diff --git a/src/notification/notifTokens.js b/src/notification/notifTokens.js index 1e17ee42ab5..2b1babd3336 100644 --- a/src/notification/notifTokens.js +++ b/src/notification/notifTokens.js @@ -37,7 +37,9 @@ import * as logging from '../utils/logging'; export const androidGetToken = (): GlobalThunkAction> => async (dispatch, getState) => { try { - return await NativeModules.Notifications.getToken(); + const token = await NativeModules.Notifications.getToken(); + logging.info(`notif: FCM token: ${token}`); + return token; } catch (e) { // `getToken` failed. That happens sometimes, apparently including // due to network errors: see #5061. In that case all will be well