You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ri...@apache.org on 2021/11/04 14:42:26 UTC

[geode] branch GEM-3421-Geode-for-Redis-String-TLS-Tests updated: Up the log level

This is an automated email from the ASF dual-hosted git repository.

ringles pushed a commit to branch GEM-3421-Geode-for-Redis-String-TLS-Tests
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/GEM-3421-Geode-for-Redis-String-TLS-Tests by this push:
     new 86cc239  Up the log level
86cc239 is described below

commit 86cc2394601637143f5754758665976f4f775b75
Author: Ray Ingles <ri...@vmware.com>
AuthorDate: Thu Nov 4 10:38:59 2021 -0400

    Up the log level
---
 .../apache/geode/redis/internal/executor/cluster/ClusterExecutor.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/geode-for-redis/src/main/java/org/apache/geode/redis/internal/executor/cluster/ClusterExecutor.java b/geode-for-redis/src/main/java/org/apache/geode/redis/internal/executor/cluster/ClusterExecutor.java
index 5db01c9..5317906 100644
--- a/geode-for-redis/src/main/java/org/apache/geode/redis/internal/executor/cluster/ClusterExecutor.java
+++ b/geode-for-redis/src/main/java/org/apache/geode/redis/internal/executor/cluster/ClusterExecutor.java
@@ -32,6 +32,8 @@ import java.util.List;
 import java.util.Map;
 import java.util.Set;
 
+import org.apache.logging.log4j.Logger;
+
 import org.apache.geode.cache.Region;
 import org.apache.geode.cache.partition.PartitionMemberInfo;
 import org.apache.geode.cache.partition.PartitionRegionHelper;
@@ -47,12 +49,14 @@ import org.apache.geode.redis.internal.netty.ExecutionHandlerContext;
 import org.apache.geode.redis.internal.parameters.RedisParametersMismatchException;
 
 public class ClusterExecutor implements CommandExecutor {
+  private static final Logger logger = LogService.getLogger();
 
   @Override
   public RedisResponse executeCommand(Command command, ExecutionHandlerContext context)
       throws Exception {
 
     List<byte[]> args = command.getProcessedCommand();
+    logger.warn("CLUSTER, args are:" + args);
     byte[] subcommand = args.get(1);
 
     if (equalsIgnoreCaseBytes(subcommand, bINFO)) {