]> git.saurik.com Git - redis.git/commitdiff
debugging message moved from REDIS_WARING to REDIS_DEBUG
authorantirez <antirez@gmail.com>
Fri, 4 Mar 2011 14:45:38 +0000 (15:45 +0100)
committerantirez <antirez@gmail.com>
Fri, 4 Mar 2011 14:45:38 +0000 (15:45 +0100)
src/dscache.c

index 15134cc710fb6e85bc0e086fc69424a3c5363f23..6b44d42845ecbfbe02e5ad49a3fa3d88ddb1c1f1 100644 (file)
@@ -469,7 +469,7 @@ void *IOThreadEntryPoint(void *arg) {
 
         /* Signal the main thread there is new stuff to process */
         redisAssert(write(server.io_ready_pipe_write,"x",1) == 1);
-        redisLog(REDIS_WARNING,"TIME (%c): %lld\n", j->type == REDIS_IOJOB_LOAD ? 'L' : 'S', ustime()-start);
+        redisLog(REDIS_DEBUG,"TIME (%c): %lld\n", j->type == REDIS_IOJOB_LOAD ? 'L' : 'S', ustime()-start);
     }
     /* never reached, but that's the full pattern... */
     unlockThreadedIO();