Commit e4682c82 authored by antirez's avatar antirez
Browse files

Remove too agressive/spamming log in rdb.c.

parent f9b5ca29
...@@ -773,7 +773,6 @@ robj *rdbLoadObject(int rdbtype, rio *rdb) { ...@@ -773,7 +773,6 @@ robj *rdbLoadObject(int rdbtype, rio *rdb) {
size_t len; size_t len;
unsigned int i; unsigned int i;
redisLog(REDIS_DEBUG,"LOADING OBJECT %d (at %d)\n",rdbtype,rioTell(rdb));
if (rdbtype == REDIS_RDB_TYPE_STRING) { if (rdbtype == REDIS_RDB_TYPE_STRING) {
/* Read string value */ /* Read string value */
if ((o = rdbLoadEncodedStringObject(rdb)) == NULL) return NULL; if ((o = rdbLoadEncodedStringObject(rdb)) == NULL) return NULL;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment