IDEMPIERE-3551 Automatic Packin - lower verbosity (#2491)

This commit is contained in:
Carlos Ruiz 2024-10-16 09:57:53 +02:00
parent 89e6e6209f
commit 3864166213
2 changed files with 2 additions and 1 deletions

View File

@ -126,7 +126,7 @@ public abstract class AbstractActivator implements BundleActivator, ServiceTrack
logger.warning("Wrong name, ignored " + fileName);
return false;
}
logger.warning(fileName);
if (logger.isLoggable(Level.INFO)) logger.info(fileName);
String clientValue = parts[1];
clientId = DB.getSQLValueEx(null, "SELECT AD_Client_ID FROM AD_Client WHERE Value=?", clientValue);
if (clientId < 0)

View File

@ -264,6 +264,7 @@ public class PackInApplicationActivator extends AbstractActivator{
continue;
}
logger.warning("Processing " + filePath);
processFilePath(toProcess);
}