From 9ab5db39e47077024bf6dc48d8ef617490d4246b Mon Sep 17 00:00:00 2001 From: moneromooo Date: Thu, 22 Jan 2015 18:29:05 +0000 Subject: [PATCH] betutils: move "does not have enough balance" from error to warning --- tipbot/betutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tipbot/betutils.py b/tipbot/betutils.py index 2b67c3d..440676c 100644 --- a/tipbot/betutils.py +++ b/tipbot/betutils.py @@ -73,7 +73,7 @@ def IsPlayerBalanceAtLeast(link,units): balance = 0 balance=long(balance) if units > balance: - log_error ('%s does not have enough balance' % link.user.nick) + log_info ('%s does not have enough balance' % link.user.nick) return False, "You only have %s" % (AmountToString(balance)) except Exception,e: log_error ('failed to query balance')