Skip to content

Commit 5c88064

Browse files
authored
Demote "testcontainers.properties not found" message to debug log level (#7035)
1 parent 3a2ba5f commit 5c88064

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/org/testcontainers/utility/TestcontainersConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,13 +365,13 @@ private static Properties readProperties(URL url) {
365365
try (InputStream inputStream = url.openStream()) {
366366
properties.load(inputStream);
367367
} catch (FileNotFoundException e) {
368-
log.warn(
368+
log.debug(
369369
"Attempted to read Testcontainers configuration file at {} but the file was not found. Exception message: {}",
370370
url,
371371
ExceptionUtils.getRootCauseMessage(e)
372372
);
373373
} catch (IOException e) {
374-
log.warn(
374+
log.debug(
375375
"Attempted to read Testcontainers configuration file at {} but could it not be loaded. Exception message: {}",
376376
url,
377377
ExceptionUtils.getRootCauseMessage(e)

0 commit comments

Comments
 (0)