Skip to content

Commit

Permalink
[FIXED JENKINS-39604] - ResourceBundleUtil#getBundle() should report …
Browse files Browse the repository at this point in the history
…resource misses on the low level

I propose the FINER level.
  • Loading branch information
oleg-nenashev committed Nov 8, 2016
1 parent 5e5ba7b commit 500cefd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/jenkins/util/ResourceBundleUtil.java
Expand Up @@ -114,7 +114,7 @@ private ResourceBundleUtil() {
return ResourceBundle.getBundle(baseName, locale, classLoader);
} catch (MissingResourceException e) {
// fall through and return null.
logger.warning(e.getMessage());
logger.finer(e.getMessage());
}
return null;
}
Expand Down

0 comments on commit 500cefd

Please sign in to comment.