mirror of
https://github.com/apache/maven-mvnd.git
synced 2026-01-14 07:03:54 +08:00
Log env resolution at TRACE
This commit is contained in:
@@ -511,7 +511,7 @@ public class DaemonParameters {
|
||||
}
|
||||
}
|
||||
final String result = valueSource.valueSupplier.get();
|
||||
if (result != null && LOG.isDebugEnabled()) {
|
||||
if (result != null && LOG.isTraceEnabled()) {
|
||||
StringBuilder sb = new StringBuilder("Loaded environment value for key [")
|
||||
.append(envKey.name())
|
||||
.append("] from ");
|
||||
@@ -519,7 +519,7 @@ public class DaemonParameters {
|
||||
sb.append(": [")
|
||||
.append(result)
|
||||
.append(']');
|
||||
LOG.debug(sb.toString());
|
||||
LOG.trace(sb.toString());
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user