more winston

v1.18.x
Baris Usakli 12 years ago
parent 8dc7a0dbbf
commit 1856e394f3

@ -4,12 +4,13 @@
posts = require('./posts.js'),
topics = require('./topics.js'),
fs = require('fs'),
rss = require('node-rss');
rss = require('node-rss'),
winston = require('winston');
function saveFeed(location, feed) {
fs.writeFile(location, rss.getFeedXML(feed), function (err) {
if(err) {
console.log(err);
winston.err(err);
}
});
}
@ -32,7 +33,7 @@
var cache_time_in_seconds = 60;
topics.getTopicWithPosts(tid, 0, function(err, topicData) {
if (err) console.log('Error: Problem saving topic RSS feed', err);
if (err) winston.error('Problem saving topic RSS feed', err.stack);
var location = '/topic/' + topicData.slug,
xml_url = '/topic/' + tid + '.rss';
@ -69,7 +70,7 @@
Feed.updateCategory = function(cid) {
categories.getCategoryById(cid, 0, function(err, categoryData) {
if (err) {
console.log('Error: Could not update RSS feed for category ' + cid);
winston.error('Could not update RSS feed for category ' + cid, err.stack);
return;
}

@ -2,7 +2,8 @@
var user = require('./user.js'),
bcrypt = require('bcrypt'),
RDB = require('./redis.js'),
path = require('path');
path = require('path'),
winston = require('winston');
(function(Login){
@ -27,7 +28,7 @@ var user = require('./user.js'),
user.getUserField(uid, 'password', function(user_password) {
bcrypt.compare(password, user_password, function(err, res) {
if(err) {
console.log(err);
winston.err(err);
next({
status: "error",
message: 'bcrypt compare error'

Loading…
Cancel
Save