Commented out an overly verbose (even for DEBUG level) log message.

This commit is contained in:
Jeremy Fincher 2005-06-30 22:04:59 +00:00
parent bc1451e898
commit 830a5c5084

View File

@ -694,7 +694,7 @@ class NestedCommandsIrcProxy(ReplyIrcProxy):
if not hasattr(cb, 'getCommand'): if not hasattr(cb, 'getCommand'):
continue continue
L = cb.getCommand(args) L = cb.getCommand(args)
log.debug('%s.getCommand(%r) returned %r', cb.name(), args, L) #log.debug('%s.getCommand(%r) returned %r', cb.name(), args, L)
if L and L >= maxL: if L and L >= maxL:
maxL = L maxL = L
cbs.append((cb, L)) cbs.append((cb, L))