From a276a33969d5593d80eadc027686ffa755bfbc24 Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Thu, 29 Oct 2020 14:50:11 -0400 Subject: [PATCH] LocalBuildConfiguration: log to /build.log not /build-2.log Since the build log is already within the a build-specific directory, we don't need to put the build ID (which ends up always being "2") into the build log filename. --- module_build_service/common/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/module_build_service/common/config.py b/module_build_service/common/config.py index 74e26739..05bef11e 100644 --- a/module_build_service/common/config.py +++ b/module_build_service/common/config.py @@ -79,6 +79,7 @@ class LocalBuildConfiguration(BaseConfiguration): CACHE_DIR = "~/modulebuild/cache" LOG_LEVEL = "debug" MESSAGING = "drop" + BUILD_LOGS_NAME_FORMAT = "build.log" ALLOW_CUSTOM_SCMURLS = True RESOLVER = "mbs"