IDEMPIERE-1325 - lower log level for a harmless message
This commit is contained in:
parent
e012b916e2
commit
b4c8f5e34e
|
@ -138,8 +138,10 @@ public final class Prop implements Serializable {
|
|||
}
|
||||
catch (FileNotFoundException e)
|
||||
{
|
||||
log.warning(filename + " not found");
|
||||
log.warning("!!WARNING:Please locate yout custom home.properties on iDEMPIERE_HOME.");
|
||||
if (log.isLoggable(Level.INFO)) {
|
||||
log.info(filename + " not found");
|
||||
log.info("!!WARNING:Please locate your custom home.properties on IDEMPIERE_HOME.");
|
||||
}
|
||||
loadOK = false;
|
||||
try {
|
||||
fis = Prop.class.getResourceAsStream(HOME_PROPERTY_FILE);
|
||||
|
|
Loading…
Reference in New Issue