IDEMPIERE-391 Scheduler improvements / Show debug info for troubleshooting
This commit is contained in:
parent
570d61b7aa
commit
4d15a4515e
|
@ -129,8 +129,10 @@ public class MSchedule extends X_AD_Schedule
|
|||
retVal = inetAddress.getHostName();
|
||||
}
|
||||
if (ipOnly.equals(retVal)) {
|
||||
log.fine("Allowed here - IP=" + retVal+ " match");
|
||||
log.info("Allowed here - IP=" + retVal+ " match");
|
||||
return true;
|
||||
} else {
|
||||
log.info("Not Allowed here - IP=" + retVal+ " does not match " + ipOnly);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -198,7 +198,7 @@ public class MStore extends X_W_Store
|
|||
*/
|
||||
public static MStore[] getActive()
|
||||
{
|
||||
s_log.info("");
|
||||
s_log.fine("");
|
||||
try
|
||||
{
|
||||
Collection<?> cc = s_cache.values();
|
||||
|
|
Loading…
Reference in New Issue