From f24dbd3813996a01f61bb1e623061b15e7b490e2 Mon Sep 17 00:00:00 2001 From: moneromooo Date: Thu, 1 Jan 2015 15:21:48 +0000 Subject: [PATCH] Remove AmountToString debug log --- tipbot/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tipbot/utils.py b/tipbot/utils.py index fb749ea..7942d61 100644 --- a/tipbot/utils.py +++ b/tipbot/utils.py @@ -68,7 +68,6 @@ def AmountToString(amount): break if not samount: samount = "%.16g %s" % (float(lamount) / coinspecs.atomic_units, coinspecs.name) - log_log("AmountToString: %s -> %s" % (str(amount),samount)) return samount def SendJSONRPCCommand(host,port,method,params):