Adds token to console log
This commit is contained in:
parent
91dd7cb6b2
commit
f7f3271cd4
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
//Keep in mind the function will return null if the token has not been established yet.
|
||||||
FCMPlugin.getToken(function(token) {
|
FCMPlugin.getToken(function(token) {
|
||||||
$log.debug('Get token for push notifications...');
|
$log.debug('Get token for push notifications: ' + token);
|
||||||
_token = token;
|
_token = token;
|
||||||
root.enable();
|
root.enable();
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue