moving nearly all startup messages to verbose type

This commit is contained in:
Julian Lam
2014-11-26 13:28:10 -05:00
parent ab2580cc5f
commit 23b14b3443
7 changed files with 23 additions and 30 deletions

View File

@@ -19,7 +19,7 @@ var async = require('async'),
Notifications.init = function() {
if (process.env.NODE_ENV === 'development') {
winston.info('[notifications.init] Registering jobs.');
winston.verbose('[notifications.init] Registering jobs.');
}
new cron('*/30 * * * *', Notifications.prune, null, true);
};