diff options
author | antirez <antirez@gmail.com> | 2015-07-26 15:17:43 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2015-07-26 15:17:43 +0200 |
commit | 424fe9afd9264991cddb502204276a244537c87f (patch) | |
tree | 530dcf334ec06bfedb23950ac8899a749e408b3b /src/t_hash.c | |
parent | cef054e86856463d3e79d4a5048507377c85eab7 (diff) | |
download | redis-424fe9afd9264991cddb502204276a244537c87f.tar.gz |
RDMF: redisLog -> serverLog.
Diffstat (limited to 'src/t_hash.c')
-rw-r--r-- | src/t_hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/t_hash.c b/src/t_hash.c index ddfcf31a8..8754f3182 100644 --- a/src/t_hash.c +++ b/src/t_hash.c @@ -452,7 +452,7 @@ void hashTypeConvertZiplist(robj *o, int enc) { value = tryObjectEncoding(value); ret = dictAdd(dict, field, value); if (ret != DICT_OK) { - redisLogHexDump(REDIS_WARNING,"ziplist with dup elements dump", + serverLogHexDump(REDIS_WARNING,"ziplist with dup elements dump", o->ptr,ziplistBlobLen(o->ptr)); redisAssert(ret == DICT_OK); } |