removing debug statements from feed.js

This commit is contained in:
Julian Lam
2013-06-17 16:17:56 -04:00
parent b0111274ad
commit e32111c8bc

View File

@@ -7,8 +7,6 @@
rss = require('node-rss'); rss = require('node-rss');
function saveFeed(location, feed) { function saveFeed(location, feed) {
console.log(rss.getFeedXML(feed));
console.log('derp');
fs.writeFile(location, rss.getFeedXML(feed), function (err) { fs.writeFile(location, rss.getFeedXML(feed), function (err) {
if (err) throw err; if (err) throw err;
}); });