From 8de1f8036c12bfe8729e54b062c1325ff966e70f Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Thu, 18 Feb 2021 23:34:17 +0200 Subject: [PATCH] Allow specifying the BUILD_LOG_LEVEL separately --- makefiles/variables.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/makefiles/variables.mk b/makefiles/variables.mk index e0baa42..eba4ea6 100644 --- a/makefiles/variables.mk +++ b/makefiles/variables.mk @@ -26,7 +26,9 @@ ifeq ($(V), 0) endif # Chronicles log level -ifdef LOG_LEVEL +ifdef BUILD_LOG_LEVEL + NIM_PARAMS := $(NIM_PARAMS) -d:chronicles_log_level="$(BUILD_LOG_LEVEL)" +else ifdef LOG_LEVEL NIM_PARAMS := $(NIM_PARAMS) -d:chronicles_log_level="$(LOG_LEVEL)" endif