Skip to content

Commit

Permalink
Demote "testcontainers.properties not found" message to debug log lev…
Browse files Browse the repository at this point in the history
…el (#7035)
  • Loading branch information
perlun committed May 30, 2023
1 parent 3a2ba5f commit 5c88064
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -365,13 +365,13 @@ private static Properties readProperties(URL url) {
try (InputStream inputStream = url.openStream()) {
properties.load(inputStream);
} catch (FileNotFoundException e) {
log.warn(
log.debug(
"Attempted to read Testcontainers configuration file at {} but the file was not found. Exception message: {}",
url,
ExceptionUtils.getRootCauseMessage(e)
);
} catch (IOException e) {
log.warn(
log.debug(
"Attempted to read Testcontainers configuration file at {} but could it not be loaded. Exception message: {}",
url,
ExceptionUtils.getRootCauseMessage(e)
Expand Down

0 comments on commit 5c88064

Please sign in to comment.