diff --git a/DrBotIRC.py b/DrBotIRC.py index b533860..292a6e1 100644 --- a/DrBotIRC.py +++ b/DrBotIRC.py @@ -38,7 +38,7 @@ class DrBotzoMethods: """Store the same stuff the core module would, since we'll probably need it.""" self.irc = irc - self.log = logging.getLogger('dr.botzo') + self.log = logging.getLogger('drbotzo') def echo(self, message): """ @@ -97,7 +97,7 @@ class DrBotServerConnection(irclib.ServerConnection): # temporary. hopefully on_welcome() will set this self.nickmask = socket.getfqdn() - self.log = logging.getLogger('dr.botzo') + self.log = logging.getLogger('drbotzo') self.add_global_handler('welcome', self.on_welcome, 1) @@ -152,7 +152,7 @@ class DrBotIRC(irclib.IRC): self.config = config self.xmlrpc = None - self.log = logging.getLogger('dr.botzo') + self.log = logging.getLogger('drbotzo') # handle SIGINT signal.signal(signal.SIGINT, self.sigint_handler)