Enable Finotes Logs
You can activate intenal logging using a single line API.
Call log API to enable SDK logging. Activating log will print all internal SDK logs in LogCat including error and warning logs.
ExtensionDelegate Class:
- Objective C
- Swift
- (void)applicationDidFinishLaunching {
[Fn log];
[Fn initialize:self];
}
func applicationDidFinishLaunching() {
Fn.log()
Fn.initialize(self)
}
When preparing for production release, make sure to remove the log API.