From a01a05c658a15bc82a58fab6984ea42c50ba2e64 Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Mon, 27 Jul 2026 12:25:27 +0000 Subject: [PATCH] Demote recompiling message from INFO to DEBUG (fixes #333) --- .../java/org/apache/maven/plugin/compiler/ToolExecutor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java b/src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java index 907d32390..1ae46b18b 100644 --- a/src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java +++ b/src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java @@ -389,7 +389,7 @@ public boolean applyIncrementalBuild(final AbstractCompilerMojo mojo, final Opti } if (causeOfRebuild != null) { if (!sourceFiles.isEmpty()) { // Avoid misleading message such as "all sources changed". - logger.info(causeOfRebuild); + logger.debug(causeOfRebuild); } } else { isPartialBuild = true;