diff options
author | Jason Livesay <ithkuil@gmail.com> | 2014-04-10 22:27:09 -0700 |
---|---|---|
committer | Jason Livesay <ithkuil@gmail.com> | 2014-04-10 22:27:09 -0700 |
commit | ebe174c8687e02404a986e17dffc773378dc98e7 (patch) | |
tree | 36e2e28513b3917a757b7b20e01dbe9a74562da2 | |
parent | be02aaec72c1a2dff1d1ec20d73647522f46ac35 (diff) | |
download | Nim-ebe174c8687e02404a986e17dffc773378dc98e7.tar.gz |
delete echo statements used for debugging
-rw-r--r-- | lib/pure/redis.nim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/pure/redis.nim b/lib/pure/redis.nim index 37a2a3f16..147a7a82a 100644 --- a/lib/pure/redis.nim +++ b/lib/pure/redis.nim @@ -84,9 +84,7 @@ proc parseStatus(r: TRedis, line: string = ""): TRedisStatus = return line.substr(1) # Strip '+' proc readStatus(r:TRedis): TRedisStatus = - echo "top of readStatus" r.readSocket("OK") - echo "line is " & line return r.parseStatus(line) proc parseInteger(r: TRedis, line: string = ""): TRedisInteger = |