more winston

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

@ -4,12 +4,13 @@
posts = require('./posts.js'), posts = require('./posts.js'),
topics = require('./topics.js'), topics = require('./topics.js'),
fs = require('fs'), fs = require('fs'),
rss = require('node-rss'); rss = require('node-rss'),
winston = require('winston');
function saveFeed(location, feed) { function saveFeed(location, feed) {
fs.writeFile(location, rss.getFeedXML(feed), function (err) { fs.writeFile(location, rss.getFeedXML(feed), function (err) {
if(err) { if(err) {
console.log(err); winston.err(err);
} }
}); });
} }
@ -32,7 +33,7 @@
var cache_time_in_seconds = 60; var cache_time_in_seconds = 60;
topics.getTopicWithPosts(tid, 0, function(err, topicData) { 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, var location = '/topic/' + topicData.slug,
xml_url = '/topic/' + tid + '.rss'; xml_url = '/topic/' + tid + '.rss';
@ -69,7 +70,7 @@
Feed.updateCategory = function(cid) { Feed.updateCategory = function(cid) {
categories.getCategoryById(cid, 0, function(err, categoryData) { categories.getCategoryById(cid, 0, function(err, categoryData) {
if (err) { 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; return;
} }

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

Loading…
Cancel
Save