##Logging in Cocoa
There are a ton of ways and frameworks for logging in your project. At the following I will describe the way it works for me.
For me it's not so important to have multiple loggers, meaning I can log to a file and the console simultaneously. If you look for such a solution, I recommend to look in the CocoaLumberjack or the NSLogger framework.
My focus is: Log information to the console in a simple way, without any extra dependences and configurable for the debug or the release setting.
My preferred way to get this, is to use macros. The macros are placed at the end of the Prefix.pch file of your project and looks like the following: