[jbosscache-commits] JBoss Cache SVN: r5629 - core/trunk/src/main/java/org/jboss/cache/interceptors.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Tue Apr 22 13:08:48 EDT 2008


Author: manik.surtani at jboss.com
Date: 2008-04-22 13:08:48 -0400 (Tue, 22 Apr 2008)
New Revision: 5629

Modified:
   core/trunk/src/main/java/org/jboss/cache/interceptors/CallInterceptor.java
Log:
Logging

Modified: core/trunk/src/main/java/org/jboss/cache/interceptors/CallInterceptor.java
===================================================================
--- core/trunk/src/main/java/org/jboss/cache/interceptors/CallInterceptor.java	2008-04-22 16:55:25 UTC (rev 5628)
+++ core/trunk/src/main/java/org/jboss/cache/interceptors/CallInterceptor.java	2008-04-22 17:08:48 UTC (rev 5629)
@@ -2,7 +2,11 @@
 
 import org.jboss.cache.InvocationContext;
 import org.jboss.cache.commands.CacheCommand;
-import org.jboss.cache.commands.cachedata.*;
+import org.jboss.cache.commands.cachedata.MoveCommand;
+import org.jboss.cache.commands.cachedata.PutDataMapCommand;
+import org.jboss.cache.commands.cachedata.PutKeyValueCommand;
+import org.jboss.cache.commands.cachedata.RemoveDataCommand;
+import org.jboss.cache.commands.cachedata.RemoveNodeCommand;
 import org.jboss.cache.commands.functional.TxCacheCommand;
 import org.jboss.cache.commands.tx.CommitCommand;
 import org.jboss.cache.commands.tx.OptimisticPrepareCommand;
@@ -84,7 +88,7 @@
    @Override
    public Object handleDefault(InvocationContext ctx, CacheCommand command) throws Throwable
    {
-      if (trace) log.trace("Executing command: " + command.getClass().getSimpleName() + " .");
+      if (trace) log.trace("Executing command: " + command.getClass().getSimpleName() + ".");
       return invokeCommand(ctx, command);
    }
 




More information about the jbosscache-commits mailing list