Commit db44b214 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Modified level of logging to warn when a resource bundle is missing.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1190 b35dd754-fafc-0310-a699-88a17e54d16e
parent 60f012d2
...@@ -281,7 +281,7 @@ public class LocaleUtils { ...@@ -281,7 +281,7 @@ public class LocaleUtils {
} }
} }
catch (java.util.MissingResourceException mre) { catch (java.util.MissingResourceException mre) {
Log.error("Missing resource for key: " + key Log.warn("Missing resource for key: " + key
+ " in locale " + locale.toString()); + " in locale " + locale.toString());
value = ""; value = "";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment