CFLog: Difference between revisions

From iPhone Development Wiki
(Created page with '{{occlass|library=CoreFoundation.framework}} CFLog is the backend of NSLog. It is useful for logging in apps where Foundation framework is not imported. If you're writing …')
 
mNo edit summary
 
Line 1: Line 1:
{{occlass|library=CoreFoundation.framework}}
[[CFLog]] is the backend of NSLog. It is useful for logging in apps where Foundation framework is not imported.  
[[CFLog]] is the backend of NSLog. It is useful for logging in apps where Foundation framework is not imported.  


If you're writing a pure C framework, consider using [http://linux.die.net/man/3/syslog syslog(3)] instead.
If you're writing a pure C framework, consider using [http://linux.die.net/man/3/syslog syslog(3)] instead.


== References ==
== External links ==
 
* Official header of CFLog: http://opensource.apple.com/source/CF/CF-476.19/CFLogUtilities.h
* Official header of CFLog: http://opensource.apple.com/source/CF/CF-476.19/CFLogUtilities.h
* Source code of CFLog: http://opensource.apple.com/source/CF/CF-476.19/CFUtilities.c
* Source code of CFLog: http://opensource.apple.com/source/CF/CF-476.19/CFUtilities.c
{{occlass|library=CoreFoundation.framework}}

Latest revision as of 05:31, 26 October 2014

CFLog is the backend of NSLog. It is useful for logging in apps where Foundation framework is not imported.

If you're writing a pure C framework, consider using syslog(3) instead.

External links