From: root Date: Wed, 20 May 2015 15:46:26 +0000 (-0500) Subject: write_redis: Log error message from redis command failures X-Git-Tag: collectd-5.5.0~5 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=92ba603ab4aea6186600757fcbcbf4781cc86dcc write_redis: Log error message from redis command failures --- diff --git a/src/write_redis.c b/src/write_redis.c index 1e7281cb..43d71f8a 100644 --- a/src/write_redis.c +++ b/src/write_redis.c @@ -125,11 +125,11 @@ static int wr_write (const data_set_t *ds, /* {{{ */ 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);