From e989cd4bc1d02b5032b4207487cfff06a4040b0e Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sun, 4 Jan 2004 12:44:30 +0000 Subject: [PATCH] Added an additional logging message. --- plugins/RSS.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/RSS.py b/plugins/RSS.py index c95941f1e..39e601251 100644 --- a/plugins/RSS.py +++ b/plugins/RSS.py @@ -125,6 +125,7 @@ class RSS(callbacks.Privmsg, configurable.Mixin): wait = self.globalConfigurables.get('wait-period') if url not in self.lastRequest or now - self.lastRequest[url] > wait: try: + self.log.info('Downloading new feed from %s', url) results = rssparser.parse(url) except sgmllib.SGMLParseError: self.log.exception('Uncaught exception from rssparser:')