j3k0 / cordova-plugin-openwith

Get your Cordova App in the O.S. "Share" menu on iOS and Android
MIT License
137 stars 114 forks source link

iOS: NSLog() not working in ShareViewController.m #105

Open perelin opened 4 years ago

perelin commented 4 years ago

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?