minor tweak to winston logging for user jobs

v1.18.x
Julian Lam 11 years ago
parent c070808209
commit 85a5c123af

@ -55,9 +55,9 @@ module.exports = function(User) {
}, function(err) { }, function(err) {
// When finished... // When finished...
if (!err) { if (!err) {
winston.info('[user/notifications] Daily Digests sent!'); winston.info('[user/jobs] Daily Digests sent!');
} else { } else {
winston.error('[user/notifications] Could not send daily digests: ' + err.message); winston.error('[user/jobs] Could not send daily digests: ' + err.message);
} }
}); });
}); });

Loading…
Cancel
Save