You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2008/09/30 12:30:11 UTC

svn commit: r700408 - /geronimo/gshell/trunk/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/command/CommandSupport.java

Author: jdillon
Date: Tue Sep 30 03:30:10 2008
New Revision: 700408

URL: http://svn.apache.org/viewvc?rev=700408&view=rev
Log:
Fixed notivation trace

Modified:
    geronimo/gshell/trunk/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/command/CommandSupport.java

Modified: geronimo/gshell/trunk/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/command/CommandSupport.java
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/command/CommandSupport.java?rev=700408&r1=700407&r2=700408&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/command/CommandSupport.java (original)
+++ geronimo/gshell/trunk/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/command/CommandSupport.java Tue Sep 30 03:30:10 2008
@@ -296,7 +296,7 @@
             result = new CommandResult.ValueResult(value);
         }
         catch (final Notification n) {
-            log.trace("Notified: {}, n");
+            log.trace("Notified: {}", n);
 
             result = new CommandResult.NotificationResult(n);
         }