Lower the logging level of the sfSnarfer.

This commit is contained in:
James Vega 2005-01-13 14:12:58 +00:00
parent 3f284f2ece
commit 9b74c0049a

View File

@ -493,11 +493,11 @@ class Sourceforge(callbacks.PrivmsgCommandAndRegexp):
url = match.group(0)
resp = self._getTrackerInfo(url)
if resp is None:
self.log.warning('Invalid Tracker page snarfed: %s', url)
self.log.info('Invalid Tracker page snarfed: %s', url)
else:
irc.reply(resp, prefixName=False)
except TrackerError, e:
self.log.warning(str(e))
self.log.info(str(e))
sfSnarfer = urlSnarfer(sfSnarfer)
Class = Sourceforge