Skip to content

Commit

Permalink
adjust loglevel (openhab#7935)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan N. Klug <[email protected]>
  • Loading branch information
J-N-K authored and andrewfg committed Aug 31, 2020
1 parent 481baa3 commit 0d2bc4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public static Map<String, String> readPropertiesFile(String filename) {
return properties.entrySet().stream()
.collect(Collectors.toMap(e -> (String) e.getKey(), e -> (String) e.getValue()));
} catch (IOException e) {
LOGGER.error("could not read resource file {}, binding will probably fail: {}", filename, e.getMessage());
LOGGER.warn("Could not read resource file {}, binding will probably fail: {}", filename, e.getMessage());
return new HashMap<>();
}
}
Expand Down

0 comments on commit 0d2bc4d

Please sign in to comment.