Let's change this to a debug log.

This commit is contained in:
Jeremy Fincher 2004-08-17 15:36:42 +00:00
parent b6f03a42b4
commit 7855f61f58

View File

@ -216,7 +216,8 @@ class Owner(privmsgs.CapabilityCheckingPrivmsg):
if irc.getCallback(name) is None:
if value():
if not irc.getCallback(name):
self.log.info('Loading %s.' % name)
# This is debug because each log logs its beginning.
self.log.debug('Loading %s.' % name)
try:
m = loadPluginModule(name)
loadPluginClass(irc, m)