Parmanoir

Redirecting NSLog with NSLogConsole

UPDATE check out Redirecting NSLog to a file for just capturing NSLog.

NSLogConsole captures NSLog data (from stderr) and redirects it to a console. It still forwards it to XCode's and also appears in Console.app. I've redirected to an html console, but you can do pretty much anything with the data : save it to a file, mail it, discard it, filter it …

Image:Redirecting NSLog to a console.png

Sample code

Image:iconZip.png NSLogConsole.zip

Usage

  • Copy NSLogConsole.(m h html xib) in your project
  • Add #define NSLog(args...) NSLog(args), NSLogPostLog(__FILE__, __LINE__) to your project's precompiled header
  • Start it with [NSLogConsole sharedConsole] to capture messages, open it with [[NSLogConsole sharedConsole] open]

Thanks to …

Karsten
2008 08 17

wow, great tool...thx!!

is there some sort of restriction to the source? or is it public domain?

Karsten

Patrick Geiller
2008 08 17

MIT license. Use freely !

Right now, launching from the Finder blocks on reading … works fine in XCode and Terminal. So don't use in production code :) Somehow stderr doesn't behave the same from Finder and from XCode. Any ideas ?

John McLaughlin
2008 08 18

Brilliant! This is really nicely done!

Frank Hintsch
2010 10 29

Thanks for this wonderful peace of code. While testing I found that -init of NSLogConsole is called twice: 1st by NIB-Loader and 2nd by -sharedConsole.

Bronte Deng
2013 09 18

Thx,first.

I run your code, in my prj. Some error comes up for webview didnot load html file before invoking it.

So I add some code below:

In -[logData:file:lineNumber:]

if (![webView isWebViewLoaded]) {

   return;
}

In NSLogConsoleView - (BOOL)isWebViewLoaded;


Follow me on Twitter
Planet Cocoa
Cocoa.fr

2011 02 22Distance field
2010 07 202Binding through NSApp
2010 05 122Forwarding invocations
2010 02 272Core Image black fringes
2010 02 21Quickest Way to Shell
2010 02 08Who's calling ?
2009 09 2138 ways to use Blocks in Snow Leopard
2009 08 182Bracket Mess
2009 08 124Taming JavascriptCore within and without WebView
2009 04 15Debugging with Activity Monitor
2009 03 25How Core Image Color Tracking works
2009 03 1510Custom NSThemeFrame
2009 03 10Which framework is running ?
2009 03 074CoreUI can paint pretty big
2009 02 18Localization with functions
2009 01 30Did you forget to nest alloc and init?
2009 01 16JSCocoa on the iPhone
2009 01 11Mixing WebView and JavascriptCore
2009 01 09Badge overflow
2009 01 09Find your Garbage Collection leaks with Instruments

Powered by MediaWiki