Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best Logger for cocoa [closed]

Can anyone recommend me a good logger for cocoa, something that should be in par with log4j.

I've been developing this app in cocoa & as the source code is growing I find my self craving for a logger. I've googled a bit, have found a few options but I am looking to hear from you guys & your experiences with these loggers.

I look forward to hearing your comments.

like image 322
Asad Khan Avatar asked Oct 13 '10 17:10

Asad Khan


2 Answers

Here are a few options for you:

  • ASLogger
  • CLCLog
  • GTMLogger
  • Lumberjack
  • NSLogger
like image 101
0xced Avatar answered Oct 21 '22 21:10

0xced


Apple System Logger is the OS X logging system. The best introuction is Peter Hosey's series of blogs on the subject. The ASL is accessed via a C API, but it's not difficult to wrap in Objective-C. I've given up my homespun wrapper in favor of the GTMLogger facility in Google's Toolbox for Mac, which includes ASL support.

like image 30
Barry Wark Avatar answered Oct 21 '22 20:10

Barry Wark