From 86106460d6286e26528f12ce606effa904d79e06 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 30 Aug 2004 04:13:31 +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 46844db3f..172a57219 100644 --- a/plugins/RSS.py +++ b/plugins/RSS.py @@ -134,7 +134,7 @@ class RSS(callbacks.Privmsg): t = threading.Thread(target=self._newHeadlines, name='Fetching <%s>' % url, args=(irc, channels, name, url)) - self.log.info('Spawning thread to fetch <%s>', url) + self.log.debug('Spawning thread to fetch <%s>', url) world.threadsSpawned += 1 t.setDaemon(True) t.start()