add log level debug

This commit is contained in:
Javier 2016-01-20 16:38:11 -03:00
parent 3a60786a2c
commit 926bd81eda
2 changed files with 8 additions and 4 deletions

View File

@ -12,6 +12,7 @@ var Utils = require('./common/utils');
var Model = require('./model');
var log = require('npmlog');
log.debug = log.verbose;
log.level = 'debug';
var PUSHNOTIFICATIONS_TYPES = {
'NewCopayer': {
@ -97,10 +98,12 @@ PushNotificationsService.prototype._sendPushNotifications = function(notificatio
var notifType = PUSHNOTIFICATIONS_TYPES[notification.type];
if (!notifType) return cb();
// console.log(notification);
log.debug('\n### Notification received\n', JSON.stringify(notification));
self._checkShouldSendNotif(notification, function(err, should) {
if (err) return cb(err);
log.debug('\nShould send notification: ', should);
if (!should) return cb();
self._getRecipientsList(notification, function(err, recipientsList) {
@ -133,8 +136,8 @@ PushNotificationsService.prototype._sendPushNotifications = function(notificatio
async.each(optsList,
function(opts, next) {
self._makeRequest(opts, function(err, response) {
if (err) log.error(err);
log.debug('Post status : ', response);
if (err) log.error('ERROR!: ', err);
log.debug('Request status : ', response);
next();
});
},

View File

@ -4,6 +4,7 @@
var log = require('npmlog');
log.debug = log.verbose;
log.level = 'debug';
var config = require('../config');
var PushNotificationsService = require('../lib/pushnotificationsservice');
@ -12,5 +13,5 @@ var pushNotificationsService = new PushNotificationsService();
pushNotificationsService.start(config, function(err) {
if (err) throw err;
console.log('Push Notification Service started');
log.debug('Push Notification Service started');
});