We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a2ba5f commit 5c88064Copy full SHA for 5c88064
core/src/main/java/org/testcontainers/utility/TestcontainersConfiguration.java
@@ -365,13 +365,13 @@ private static Properties readProperties(URL url) {
365
try (InputStream inputStream = url.openStream()) {
366
properties.load(inputStream);
367
} catch (FileNotFoundException e) {
368
- log.warn(
+ log.debug(
369
"Attempted to read Testcontainers configuration file at {} but the file was not found. Exception message: {}",
370
url,
371
ExceptionUtils.getRootCauseMessage(e)
372
);
373
} catch (IOException e) {
374
375
"Attempted to read Testcontainers configuration file at {} but could it not be loaded. Exception message: {}",
376
377
0 commit comments