Is there a way to force suppression of all logging in a Mac OS X desktop Cocoa app?
Sometimes some part of the system or a plugin (which is out of your control) will log messages on behalf of your application to the console (system.log).
Is there a way to suppress all logging in your application?
@gabe: was just going to suggest something similar – just tried it out, and a simple ‘fclose(stderr)’ seems to prevent any output.