You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@gump.apache.org by aj...@apache.org on 2004/08/23 01:58:30 UTC

svn commit: rev 36713 - gump/trunk/python/gump/syndication

Author: ajack
Date: Sun Aug 22 16:58:29 2004
New Revision: 36713

Modified:
   gump/trunk/python/gump/syndication/atom.py
   gump/trunk/python/gump/syndication/rss.py
Log:
Increase verbosity to debug absense.

Modified: gump/trunk/python/gump/syndication/atom.py
==============================================================================
--- gump/trunk/python/gump/syndication/atom.py	(original)
+++ gump/trunk/python/gump/syndication/atom.py	Sun Aug 22 16:58:29 2004
@@ -111,7 +111,7 @@
 """)
                 
     def serialize(self):
-        log.debug("Atom News Feed to : " + self.file);         
+        log.info("Atom News Feed to : " + self.file);         
         stream = open(self.file,'w')
         
         modified=time.strftime('%Y-%m-%dT%H:%M:%SZ', time.gmtime())

Modified: gump/trunk/python/gump/syndication/rss.py
==============================================================================
--- gump/trunk/python/gump/syndication/rss.py	(original)
+++ gump/trunk/python/gump/syndication/rss.py	Sun Aug 22 16:58:29 2004
@@ -193,10 +193,10 @@
     def endRSS(self):                    
         # complete the rss feed
         self.rssStream.write('</rss>\n')                
-        log.debug("RSS Newsfeed written to : " + self.rssFile);          
+        log.info("RSS Newsfeed written to : " + self.rssFile);          
         
     def serialize(self):
-        log.debug("RSS Newsfeed to : " + self.rssFile);         
+        log.info("RSS Newsfeed to : " + self.rssFile);         
         self.rssStream = open(self.rssFile,'w')
         
         self.startRSS()

---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@gump.apache.org
For additional commands, e-mail: general-help@gump.apache.org