Minor - lowering log level to a common message that is solved later

This commit is contained in:
Carlos Ruiz 2013-06-24 22:10:50 -05:00
parent f84d93036b
commit 4f2d489f29
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ public class MImage extends X_AD_Image
url = getClass().getResource(str);
//
if (url == null)
log.warning("Not found: " + str);
if (log.isLoggable(Level.INFO)) log.info("Not found as resource: " + str);
}
catch (Exception e)
{