From cada667e073e4a26895dbb2cd50b3a5319645cf3 Mon Sep 17 00:00:00 2001 From: ihse Date: Mon, 4 Dec 2017 19:12:57 +0100 Subject: [PATCH] 8146977: Move the output "Building configuration X (matching Y)" to lower log level Reviewed-by: erikj --- make/InitSupport.gmk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/make/InitSupport.gmk b/make/InitSupport.gmk index f4605766cc..48af783845 100644 --- a/make/InitSupport.gmk +++ b/make/InitSupport.gmk @@ -279,7 +279,9 @@ ifeq ($(HAS_SPEC),) # generated files. ifeq ($$(MAKE_RESTARTS),) ifeq ($$(words $$(matching_confs)), 1) - $$(info Building configuration '$$(matching_confs)' (matching CONF=$$(CONF))) + ifneq ($$(findstring $$(LOG_LEVEL), info debug trace),) + $$(info Building configuration '$$(matching_confs)' (matching CONF=$$(CONF))) + endif else $$(info Building these configurations (matching CONF=$$(CONF)):) $$(foreach var, $$(matching_confs), $$(info * $$(var)))