From 7fd078b1445c8c0e35f41e6613094480251f0c72 Mon Sep 17 00:00:00 2001 From: Magnus Ihse Bursie 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 f4605766ccf..48af7838450 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)))