FlatSVGIcon: changed logging when icon resource is not found from "severe" to "config" (issue #476)

This commit is contained in:
Karl Tauber
2022-02-25 16:55:04 +01:00
parent 1a131d5206
commit 0bd677c46b

View File

@@ -480,7 +480,7 @@ public class FlatSVGIcon
if( url == null ) {
loadFailed = true;
LoggingFacade.INSTANCE.logSevere( "FlatSVGIcon: resource '" + name + "' not found (if using Java modules, check whether icon package is opened in module-info.java)", null );
LoggingFacade.INSTANCE.logConfig( "FlatSVGIcon: resource '" + name + "' not found (if using Java modules, check whether icon package is opened in module-info.java)", null );
return;
}