From 8b108ed3075f56d5d261e41e03c8e1fcfd764451 Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 4 Mar 2011 15:45:38 +0100 Subject: [PATCH] debugging message moved from REDIS_WARING to REDIS_DEBUG --- src/dscache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dscache.c b/src/dscache.c index 15134cc71..6b44d4284 100644 --- a/src/dscache.c +++ b/src/dscache.c @@ -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(); -- GitLab