From 1ff182e6058da9e477a34a6bb96aada96df2aacf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Tak=C3=A1cs?= <93127072+PeterTakacs300@users.noreply.github.com> Date: Thu, 25 May 2023 16:35:06 +0200 Subject: [PATCH] IDEMPIERE-5737 - Change Report's "No Rows" log level (#1855) --- org.adempiere.base/src/org/compiere/print/DataEngine.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.adempiere.base/src/org/compiere/print/DataEngine.java b/org.adempiere.base/src/org/compiere/print/DataEngine.java index 97ea76876c..1ad97a7c0d 100644 --- a/org.adempiere.base/src/org/compiere/print/DataEngine.java +++ b/org.adempiere.base/src/org/compiere/print/DataEngine.java @@ -1271,10 +1271,10 @@ public class DataEngine if (pd.getRowCount() == 0) { if (CLogMgt.isLevelFiner()) - log.warning("NO Rows - ms=" + (System.currentTimeMillis()-m_startTime) + log.finer("NO Rows - ms=" + (System.currentTimeMillis()-m_startTime) + " - " + pd.getSQL()); else - log.warning("NO Rows - ms=" + (System.currentTimeMillis()-m_startTime)); + log.info("NO Rows - ms=" + (System.currentTimeMillis()-m_startTime)); } else if (log.isLoggable(Level.INFO)) log.info("Rows=" + pd.getRowCount()