From a276a33969d5593d80eadc027686ffa755bfbc24 Mon Sep 17 00:00:00 2001 From: Owen W. Taylor Date: Mar 07 2023 18:33:30 +0000 Subject: 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. --- diff --git a/module_build_service/common/config.py b/module_build_service/common/config.py index 74e2673..05bef11 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"