From 85a5c123af4a4b2f27a379f356b1cfc5e76c9b92 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Wed, 19 Mar 2014 16:11:16 -0400 Subject: [PATCH] minor tweak to winston logging for user jobs --- src/user/jobs.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/user/jobs.js b/src/user/jobs.js index bcccb8ae6e..c35a3d23a4 100644 --- a/src/user/jobs.js +++ b/src/user/jobs.js @@ -55,9 +55,9 @@ module.exports = function(User) { }, function(err) { // When finished... if (!err) { - winston.info('[user/notifications] Daily Digests sent!'); + winston.info('[user/jobs] Daily Digests sent!'); } else { - winston.error('[user/notifications] Could not send daily digests: ' + err.message); + winston.error('[user/jobs] Could not send daily digests: ' + err.message); } }); });