remove crashing logging statements

This commit is contained in:
Mallory Hancock 2019-02-22 13:59:30 -08:00
parent 07fe4d1c6e
commit ac2491c005

View File

@ -177,7 +177,6 @@ class Bot(irc.bot.SingleServerIRCBot):
ops=self.ops,
logger=self.logger
))
self.logger.debug(output)
except Exception as e:
self.logger.exception('issue with command {}'.format(cmd))
else:
@ -196,7 +195,6 @@ class Bot(irc.bot.SingleServerIRCBot):
ops=self.ops,
logger=self.logger
))
self.logger.debug(listen_output.msg)
if listen_output:
output = listen_output
except Exception as e: