cordova-plugin-openwith icon indicating copy to clipboard operation
cordova-plugin-openwith copied to clipboard

iOS: NSLog() not working in ShareViewController.m

Open perelin opened this issue 4 years ago • 0 comments

Hi,

for some strange reason NSLog() in ShareViewController.m calls seem to not produce any output for me. I tried them in other places (eg OpenWithPlugin.m) and there they work fine.

For example I added a call directly on the beginning of didSelectPost():

- (void) didSelectPost {
    
    NSLog(@"Post!");
    
    [self setup];
    [self debug:@"[didSelectPost]"];
    ...

Neither NSLog() nor debug() produce any output in the device log after the user selects "Post".

Any ideas how to approach this?

perelin avatar Jun 27 '20 22:06 perelin