Skip to content

Commit 2706bca

Browse files
Update internal-api/src/main/java/datadog/trace/bootstrap/config/provider/StableConfigSource.java
Co-authored-by: Alexey Kuznetsov <[email protected]>
1 parent 13bef8d commit 2706bca

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)