aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar jesopo2019-06-17 11:12:04 +0100
committerGravatar jesopo2019-06-17 11:12:04 +0100
commitda5d48400dca8cf8a470ef8d2ba43611bfa41b26 (patch)
tree58d3c1f7cb28f922b602ce166e533bca9674c38e /src
parentRaise a BitBotPanic() exception in panic() (diff)
signature
Change panic() reason log from ERROR to CRITICAL
Diffstat (limited to 'src')
-rw-r--r--src/IRCBot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCBot.py b/src/IRCBot.py
index 052aa346..5fac86c7 100644
--- a/src/IRCBot.py
+++ b/src/IRCBot.py
@@ -107,7 +107,7 @@ class Bot(object):
callback = None
if not reason == None:
- self.log.error("panic() called: %s", [reason])
+ self.log.critical("panic() called: %s", [reason])
exception = sys.exc_info()[1]
if exception: