From 70a9fdb6b6b367eaffcb050d1c4c03f82ec9d6c2 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 30 Aug 2004 03:33:46 +0000 Subject: [PATCH] Accepted Grantbow's suggestion. --- plugins/RSS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/RSS.py b/plugins/RSS.py index 4d8fe9ac6..46844db3f 100644 --- a/plugins/RSS.py +++ b/plugins/RSS.py @@ -211,7 +211,7 @@ class RSS(callbacks.Privmsg): self.acquireLock(url) if self.willGetNewFeed(url): try: - self.log.info('Downloading new feed from <%s>', url) + self.log.debug('Downloading new feed from <%s>', url) results = rssparser.parse(url) except sgmllib.SGMLParseError: self.log.exception('Uncaught exception from rssparser:')