Skip to content

Commit

Permalink
do not warn if missing translated language.* names
Browse files Browse the repository at this point in the history
  • Loading branch information
angryziber committed Dec 28, 2018
1 parent 52fd789 commit 4a4f84d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ipscan.iml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="ipscan" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="3.5.4" type="JAVA_MODULE" version="4">
<module external.linked.project.id="ipscan" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="3.5.5" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager">
<output url="file://$MODULE_DIR$/out/production/classes" />
<output-test url="file://$MODULE_DIR$/out/test/classes" />
Expand Down
2 changes: 1 addition & 1 deletion src/net/azib/ipscan/config/Labels.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public String get(String key) {
}
catch (MissingResourceException e) {
String text = labelsFallback.getString(key);
LOG.warning("Used fallback label for " + key);
if (!key.startsWith("language.")) LOG.warning("Used fallback label for " + key);
return text;
}
}
Expand Down

0 comments on commit 4a4f84d

Please sign in to comment.