Change Newsfeed logging.

This commit is contained in:
Michael Teeuw 2016-10-14 14:19:03 +02:00
parent 4a53e4207c
commit 8b004a549a
2 changed files with 6 additions and 7 deletions

View File

@ -23,8 +23,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Updated package.json as a result of Snyk security update.
- Improve object instantiation to prevent reference errors.
- Improve logger. `Log.log()` now accepts multiple arguments.
### Changed
- Remove extensive logging in newsfeed node helper.
- Calendar times are now uniformly capitalized.
## [2.0.5] - 2016-09-20

View File

@ -60,11 +60,11 @@ var Fetcher = function(url, reloadInterval, encoding) {
} else {
console.log("Can't parse feed item:");
console.log(item);
console.log('Title: ' + title);
console.log('Description: ' + description);
console.log('Pubdate: ' + pubdate);
// console.log("Can't parse feed item:");
// console.log(item);
// console.log('Title: ' + title);
// console.log('Description: ' + description);
// console.log('Pubdate: ' + pubdate);
}
});