Adds token to console log

This commit is contained in:
Gustavo Maximiliano Cortez 2017-03-10 17:07:10 -03:00
parent 91dd7cb6b2
commit f7f3271cd4
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ angular.module('copayApp.services').factory('pushNotificationsService', function
//Keep in mind the function will return null if the token has not been established yet.
FCMPlugin.getToken(function(token) {
$log.debug('Get token for push notifications...');
$log.debug('Get token for push notifications: ' + token);
_token = token;
root.enable();
});