From 87733c7a47612289dc07abec86014e2c9a6df9e5 Mon Sep 17 00:00:00 2001 From: Heng Sin Low Date: Thu, 8 Feb 2007 05:41:39 +0000 Subject: [PATCH] * minor UI changes. --- dbPort/src/org/compiere/util/CLogErrorBuffer.java | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/dbPort/src/org/compiere/util/CLogErrorBuffer.java b/dbPort/src/org/compiere/util/CLogErrorBuffer.java index b1315373a4..b91d0a2dc2 100644 --- a/dbPort/src/org/compiere/util/CLogErrorBuffer.java +++ b/dbPort/src/org/compiere/util/CLogErrorBuffer.java @@ -211,14 +211,7 @@ public class CLogErrorBuffer extends Handler && loggerName.indexOf("Issue") == -1 && loggerName.indexOf("CConnection") == -1) { - if(Ini.isClient()) - { - JOptionPane.showMessageDialog(null, getFormatter().format(record), "Error", JOptionPane.ERROR_MESSAGE); - } - else - { - System.err.println(getFormatter().format(record)); - } + System.err.println(getFormatter().format(record)); } } }