From 149351aa49f8a975ad7950209d37844c51f546b7 Mon Sep 17 00:00:00 2001 From: James Allen Date: Wed, 29 Jun 2016 21:18:13 +0100 Subject: [PATCH] Remove debugging log lines --- services/document-updater/app/coffee/RedisBackend.coffee | 2 -- 1 file changed, 2 deletions(-) diff --git a/services/document-updater/app/coffee/RedisBackend.coffee b/services/document-updater/app/coffee/RedisBackend.coffee index 7779f2f7cf..807737510e 100644 --- a/services/document-updater/app/coffee/RedisBackend.coffee +++ b/services/document-updater/app/coffee/RedisBackend.coffee @@ -61,7 +61,6 @@ class MultiClient jobs = @clients.map (client) -> (cb) -> client.rclient.exec (error, result) -> - console.log "EXEC [#{client.driver}]" if client.driver == "ioredis" # ioredis returns an results like: # [ [null, 42], [null, "foo"] ] @@ -127,7 +126,6 @@ for command, key_pos of COMMANDS MultiClient.prototype[command] = (args...) -> for client in @clients - console.log "COMMAND [#{client.driver}]", command, args key_builder = args[key_pos] key = key_builder(client.key_schema) args_with_key = args.slice(0)