Remove debugging log lines

This commit is contained in:
James Allen 2016-06-29 21:18:13 +01:00
parent fde334acc4
commit 149351aa49

View file

@ -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)