summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: dee232e)
raw | patch | inline | side by side (parent: dee232e)
author | root <root@sub.americas.sgi.com> | |
Wed, 20 May 2015 15:46:26 +0000 (10:46 -0500) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Tue, 26 May 2015 12:13:24 +0000 (14:13 +0200) |
src/write_redis.c | patch | blob | history |
diff --git a/src/write_redis.c b/src/write_redis.c
index 1e7281cb3243d64d725dbb42a8db6a552b042ce2..43d71f8a8d1e340c7cd4b9d6607470d01449eaf6 100644 (file)
--- a/src/write_redis.c
+++ b/src/write_redis.c
assert (node->conn != NULL);
rr = redisCommand (node->conn, "ZADD %s %s %s", key, time, value);
if (rr==NULL)
- WARNING("ZADD command error. key:%s", key);
+ WARNING("ZADD command error. key:%s message:%s", key, node->conn->errstr);
rr = redisCommand (node->conn, "SADD collectd/values %s", ident);
if (rr==NULL)
- WARNING("SADD command error. ident:%s", ident);
+ WARNING("SADD command error. ident:%s message:%s", ident, node->conn->errstr);
pthread_mutex_unlock (&node->lock);