Changed from INFO to DEBUG the 'Not snarfing' messages.

This commit is contained in:
Jeremy Fincher 2004-08-23 19:40:31 +00:00
parent edecd51fc1
commit d28ddf718e
1 changed files with 2 additions and 2 deletions

View File

@ -188,8 +188,8 @@ def urlSnarfer(f):
url = match.group(0)
for (qUrl, target, when) in _snarfed:
if url == qUrl and target == channel and not world.testing:
self.log.info('Not snarfing %s from %r: in queue.',
url, msg.prefix)
self.log.debug('Not snarfing %s from %r: in queue.',
url, msg.prefix)
return
else:
_snarfed.enqueue((url, channel, now))