IDEMPIERE-391 Scheduler improvements / Show debug info for troubleshooting

This commit is contained in:
Carlos Ruiz 2012-12-04 23:08:49 -05:00
parent 570d61b7aa
commit 4d15a4515e
2 changed files with 4 additions and 2 deletions

View File

@ -129,8 +129,10 @@ public class MSchedule extends X_AD_Schedule
retVal = inetAddress.getHostName(); retVal = inetAddress.getHostName();
} }
if (ipOnly.equals(retVal)) { if (ipOnly.equals(retVal)) {
log.fine("Allowed here - IP=" + retVal+ " match"); log.info("Allowed here - IP=" + retVal+ " match");
return true; return true;
} else {
log.info("Not Allowed here - IP=" + retVal+ " does not match " + ipOnly);
} }
} }
} }

View File

@ -198,7 +198,7 @@ public class MStore extends X_W_Store
*/ */
public static MStore[] getActive() public static MStore[] getActive()
{ {
s_log.info(""); s_log.fine("");
try try
{ {
Collection<?> cc = s_cache.values(); Collection<?> cc = s_cache.values();