diff options
| author | 2019-06-17 11:12:04 +0100 | |
|---|---|---|
| committer | 2019-06-17 11:12:04 +0100 | |
| commit | da5d48400dca8cf8a470ef8d2ba43611bfa41b26 (patch) | |
| tree | 58d3c1f7cb28f922b602ce166e533bca9674c38e /src/IRCBot.py | |
| parent | Raise a BitBotPanic() exception in panic() (diff) | |
| signature | ||
Change panic() reason log from ERROR to CRITICAL
Diffstat (limited to 'src/IRCBot.py')
| -rw-r--r-- | src/IRCBot.py | 2 |
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: |
