Skip to content

Commit

Permalink
Fix tracef with not enough arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
anistor committed Oct 13, 2012
1 parent ce42182 commit 8c1fc3e
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -201,8 +201,7 @@ protected Object handleDefault(InvocationContext ctx, VisitableCommand command)
}

private Object handleTopologyAffectedCommand(InvocationContext ctx, VisitableCommand command, boolean originLocal) throws Throwable {

log.tracef("handleTopologyAffectedCommand for command %s, originLocal=%s, cacheModeLocal=%s", command, originLocal);
log.tracef("handleTopologyAffectedCommand for command %s, originLocal=%b", command, originLocal);

if (isLocal(command, originLocal)) {
return invokeNextInterceptor(ctx, command);
Expand Down

0 comments on commit 8c1fc3e

Please sign in to comment.