IDEMPIERE-3971 Process Customization - decrease log level

This commit is contained in:
Carlos Ruiz 2019-12-18 22:29:33 +01:00
parent 81b5ccbc9a
commit 0ae68806f6
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ public class ProcessParameterPanel extends Panel implements
for (int i = 0; i < listVO.size(); i++) for (int i = 0; i < listVO.size(); i++)
{ {
createField(listVO.get(i), rows); createField(listVO.get(i), rows);
log.severe(listVO.get(i).ColumnName + listVO.get(i).SeqNo); if (log.isLoggable(Level.INFO)) log.info(listVO.get(i).ColumnName + listVO.get(i).SeqNo);
} }
} catch (SQLException e) { } catch (SQLException e) {