more logging

pull/58/head
Mallory Hancock 2019-02-22 13:25:22 -08:00
parent cd1ab63db9
commit 57c523e526
1 changed files with 2 additions and 0 deletions

View File

@ -201,6 +201,7 @@ class Bot(irc.bot.SingleServerIRCBot):
self.logger.debug(output.msg) self.logger.debug(output.msg)
except Exception as e: except Exception as e:
self.logger.exception('issue with listener {}'.format(lstnr)) self.logger.exception('issue with listener {}'.format(lstnr))
self.logger.debug(f'returning output: {output.msg}')
return output return output
def process_event(self, c, e): def process_event(self, c, e):
@ -238,6 +239,7 @@ class Bot(irc.bot.SingleServerIRCBot):
} }
output = self.call_plugins(**plugin_info) output = self.call_plugins(**plugin_info)
if output: if output:
self.logger.debug(f'sending output: {output.msg}')
self.process_output(c, chan, output) self.process_output(c, chan, output)
def process_output(self, c, chan, output): def process_output(self, c, chan, output):