IDEMPIERE-3551 Automatic Packin - lower verbosity (#2491)
This commit is contained in:
parent
89e6e6209f
commit
3864166213
|
@ -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)
|
||||
|
|
|
@ -264,6 +264,7 @@ public class PackInApplicationActivator extends AbstractActivator{
|
|||
continue;
|
||||
}
|
||||
|
||||
logger.warning("Processing " + filePath);
|
||||
processFilePath(toProcess);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue