Skip to content

Commit 41f18f0

Browse files
author
ihse
committed
8146977: Move the output "Building configuration X (matching Y)" to lower log level
Reviewed-by: erikj
1 parent ee079d1 commit 41f18f0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

make/InitSupport.gmk

+3-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,9 @@ ifeq ($(HAS_SPEC),)
279279
# generated files.
280280
ifeq ($$(MAKE_RESTARTS),)
281281
ifeq ($$(words $$(matching_confs)), 1)
282-
$$(info Building configuration '$$(matching_confs)' (matching CONF=$$(CONF)))
282+
ifneq ($$(findstring $$(LOG_LEVEL), info debug trace),)
283+
$$(info Building configuration '$$(matching_confs)' (matching CONF=$$(CONF)))
284+
endif
283285
else
284286
$$(info Building these configurations (matching CONF=$$(CONF)):)
285287
$$(foreach var, $$(matching_confs), $$(info * $$(var)))

0 commit comments

Comments
 (0)