Logging for Objective-C SDK

In addition to enabling PubNub-specific logging as described below, you can gather crash reports and device logs from the App Store, TestFlight, and directly from devices. For more information, refer to this Apple document. You'll want to add identifiable symbol names to the reports, as well. This is also called symbolicating the reports.

Use this code to enable logging:

self.client.logger.enabled = YES;
[self.client.logger setLogLevel:PNVerboseLogLevel];
NLogging in pre-4.5.0 versions

To enable logging before SDK version 4.5.0. You can use this: [PNLog enabled:YES];

Sending logs to support

Use a tool such as iExplorer or Devices(in menu bar, APPNAME/Documents) in Xcode to grab the logs off the APPNAME/Documents directory on your device, and include them in your support ticket.

Last updated on