additional logging and installation information

This commit is contained in:
Sam Ruby 2006-10-28 20:18:30 -04:00
parent dc6483dfbe
commit 405290aaab
2 changed files with 8 additions and 1 deletions

View File

@ -101,5 +101,12 @@ not yet ported to the newer python so Venus will be less featureful.
may want to explicitly specify <code>python2.4</code>.</p></li>
</ol>
<h3>Ubuntu Linux (Edgy Eft) instructions</h3>
<p>Before starting, issue the following command:</p>
<ul>
<li><code>sudo apt-get install bzr python2.4-librdf</code></li>
</ul>
</body>
</html>

View File

@ -159,7 +159,7 @@ def spiderFeed(feed, only_if_new=0):
# process based on the HTTP status code
if data.status == 200 and data.has_key("url"):
data.feed['planet_http_location'] = data.url
log.info("Updating feed %s", feed)
log.info("Updating feed %s @ %s", feed, data.url)
elif data.status == 301 and data.has_key("entries") and len(data.entries)>0:
log.warning("Feed has moved from <%s> to <%s>", feed, data.url)
data.feed['planet_http_location'] = data.url