Skip to content

Commit

Permalink
Demote "testcontainers.properties not found" message to debug log level
Browse files Browse the repository at this point in the history
  • Loading branch information
perlun committed May 16, 2023
1 parent be7cbe4 commit a73f991
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -367,13 +367,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 a73f991

Please sign in to comment.