From 00b7a097cb34d620fb64b7a82b4205e8bdc9c83d Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 6 Dec 2004 03:29:45 +0000 Subject: [PATCH] Added an info-level log. --- plugins/RSS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/RSS.py b/plugins/RSS.py index 201b2078e..b8a4e147a 100644 --- a/plugins/RSS.py +++ b/plugins/RSS.py @@ -145,7 +145,7 @@ class RSS(callbacks.Privmsg): t = threading.Thread(target=self._newHeadlines, name='Fetching <%s>' % url, args=(irc, channels, name, url)) - self.log.debug('Spawning thread to fetch <%s>', url) + self.log.info('Checking for announcements at <%s>', url) world.threadsSpawned += 1 t.setDaemon(True) t.start()