Skip to content

Commit bfd5d7b

Browse files
committed
Merge branch 'mtoff/scfg-improvements' of github.com:DataDog/dd-trace-java into mtoff/scfg-improvements
2 parents 4dde216 + 2706bca commit bfd5d7b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal-api/src/main/java/datadog/trace/bootstrap/config/provider/StableConfigSource.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ public final class StableConfigSource extends ConfigProvider.Source {
4444
|| e instanceof ClassCastException
4545
|| e instanceof NullPointerException) {
4646
log.warn(
47-
"YAML mapping error in stable configuration file {}: {}", filePath, e.getMessage());
47+
"YAML mapping error in stable configuration file: {}, error: {}", filePath, e.getMessage());
4848
} else if (log.isDebugEnabled()) {
49-
log.error("Unexpected error while reading stable configuration file {}: ", filePath, e);
49+
log.error("Unexpected error while reading stable configuration file: {}", filePath, e);
5050
} else {
5151
log.error(
52-
"Unexpected error while reading stable configuration file {}: {}",
52+
"Unexpected error while reading stable configuration file: {}, error: {}",
5353
filePath,
5454
e.getMessage());
5555
}

0 commit comments

Comments
 (0)