You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by cz...@apache.org on 2004/09/15 15:02:13 UTC

svn commit: rev 46114 - portals/pluto/trunk/portal/src/java/org/apache/pluto/portalImpl/services/log

Author: cziegeler
Date: Wed Sep 15 06:02:12 2004
New Revision: 46114

Modified:
   portals/pluto/trunk/portal/src/java/org/apache/pluto/portalImpl/services/log/LoggerImpl.java
Log:
Apply fix by Simon Charette

Modified: portals/pluto/trunk/portal/src/java/org/apache/pluto/portalImpl/services/log/LoggerImpl.java
==============================================================================
--- portals/pluto/trunk/portal/src/java/org/apache/pluto/portalImpl/services/log/LoggerImpl.java	(original)
+++ portals/pluto/trunk/portal/src/java/org/apache/pluto/portalImpl/services/log/LoggerImpl.java	Wed Sep 15 06:02:12 2004
@@ -67,7 +67,7 @@
     }
 
     public void error(String aMessage, Throwable aThrowable) {
-        log.error(aMessage);
+        log.error(aMessage, aThrowable);
     }
 
     public void error(Throwable aThrowable) {