You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bahir.apache.org by lr...@apache.org on 2019/05/26 00:46:17 UTC

[bahir-flink] branch master updated: Add missing placeholder for log message

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

lresende pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bahir-flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 2721320  Add missing placeholder for log message
2721320 is described below

commit 2721320937a9f232961853efefe74be3e6a9ae93
Author: liketic <ke...@outlook.com>
AuthorDate: Sat May 25 22:01:02 2019 +0800

    Add missing placeholder for log message
---
 .../connectors/redis/common/container/RedisClusterContainer.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/flink-connector-redis/src/main/java/org/apache/flink/streaming/connectors/redis/common/container/RedisClusterContainer.java b/flink-connector-redis/src/main/java/org/apache/flink/streaming/connectors/redis/common/container/RedisClusterContainer.java
index 8a39f03..8b18578 100644
--- a/flink-connector-redis/src/main/java/org/apache/flink/streaming/connectors/redis/common/container/RedisClusterContainer.java
+++ b/flink-connector-redis/src/main/java/org/apache/flink/streaming/connectors/redis/common/container/RedisClusterContainer.java
@@ -62,8 +62,8 @@ public class RedisClusterContainer implements RedisCommandsContainer, Closeable
             jedisCluster.hset(key, hashField, value);
         } catch (Exception e) {
             if (LOG.isErrorEnabled()) {
-                LOG.error("Cannot send Redis message with command HSET to hash {} error message {}",
-                    key, hashField, e.getMessage());
+                LOG.error("Cannot send Redis message with command HSET to hash {} of key {} error message {}",
+                    hashField, key, e.getMessage());
             }
             throw e;
         }