How to enable logging on iOS - infobip/mobile-messaging-react-native-plugin GitHub Wiki
To enable logging on iOS parameter logging: true
needs to be provided to initialization configuration, as in the Example App
mobileMessaging.init(
{
applicationCode: '<Your Application Code>',
ios: {
notificationTypes: ['alert', 'badge', 'sound'],
logging: true,
},
...
},
() => {
this.updateLogInfo('MobileMessaging started');
},
(error) => {
this.updateLogInfo('MobileMessaging error: ' + error);
},
);