Skip to content

Commit

Permalink
Merge pull request #982 from fabriciofx/dont-log-bundle-exception
Browse files Browse the repository at this point in the history
don't log exception on missing bundle for base name messages
  • Loading branch information
Turini committed Aug 17, 2015
2 parents 626980d + 547d07c commit 99c61b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private ResourceBundle extractUnsafeBundle(Object bundle, Locale locale) {
try {
return ResourceBundle.getBundle(baseName, locale);
} catch (MissingResourceException e) {
logger.warn("couldn't find message bundle, creating an empty one", e);
logger.warn("couldn't find message bundle, creating an empty one");
return new EmptyBundle();
}
}
Expand Down

0 comments on commit 99c61b6

Please sign in to comment.