From 830a5c5084dd46cdc95fc8397ff5f78c27b7e2e6 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 30 Jun 2005 22:04:59 +0000 Subject: [PATCH] Commented out an overly verbose (even for DEBUG level) log message. --- src/callbacks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/callbacks.py b/src/callbacks.py index 3432d4993..aca562c08 100644 --- a/src/callbacks.py +++ b/src/callbacks.py @@ -694,7 +694,7 @@ class NestedCommandsIrcProxy(ReplyIrcProxy): if not hasattr(cb, 'getCommand'): continue 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: maxL = L cbs.append((cb, L))