Skip to content

Instantly share code, notes, and snippets.

@mikeabdullah
Created March 12, 2011 14:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeabdullah/867275 to your computer and use it in GitHub Desktop.
Save mikeabdullah/867275 to your computer and use it in GitHub Desktop.
Log errors to the console before they're presented
- (NSError *)application:(NSApplication *)theApplication
willPresentError:(NSError *)error
{
// Log the error to the console for debugging
NSLog(@"Application will present error:\n%@", [error description]);
return error;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment