IDEMPIERE-5737 - Change Report's "No Rows" log level (#1855)
This commit is contained in:
parent
3fa63cf37e
commit
1ff182e605
|
@ -1271,10 +1271,10 @@ public class DataEngine
|
||||||
if (pd.getRowCount() == 0)
|
if (pd.getRowCount() == 0)
|
||||||
{
|
{
|
||||||
if (CLogMgt.isLevelFiner())
|
if (CLogMgt.isLevelFiner())
|
||||||
log.warning("NO Rows - ms=" + (System.currentTimeMillis()-m_startTime)
|
log.finer("NO Rows - ms=" + (System.currentTimeMillis()-m_startTime)
|
||||||
+ " - " + pd.getSQL());
|
+ " - " + pd.getSQL());
|
||||||
else
|
else
|
||||||
log.warning("NO Rows - ms=" + (System.currentTimeMillis()-m_startTime));
|
log.info("NO Rows - ms=" + (System.currentTimeMillis()-m_startTime));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (log.isLoggable(Level.INFO)) log.info("Rows=" + pd.getRowCount()
|
if (log.isLoggable(Level.INFO)) log.info("Rows=" + pd.getRowCount()
|
||||||
|
|
Loading…
Reference in New Issue