Skip to content

Commit

Permalink
Merge pull request #2627 from oleg-nenashev/bug/JENKINS-39604
Browse files Browse the repository at this point in the history
[FIXED JENKINS-39604] - ResourceBundleUtil#getBundle() should report misses on the low level
  • Loading branch information
daniel-beck committed Nov 9, 2016
2 parents 457bf2b + 500cefd commit 72ee9e0
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 72ee9e0

Please sign in to comment.