¡@

Home 

2014/10/15 ¤U¤È 10:08:16

iphone Programming Glossary: enlogging_level_info

What logging solutions to use while log-debugging objective-C code?

http://stackoverflow.com/questions/7294215/what-logging-solutions-to-use-while-log-debugging-objective-c-code

are three levels of logging debug info and error and each can be enabled independently via the ENLOGGING_LEVEL_DEBUG ENLOGGING_LEVEL_INFO and ENLOGGING_LEVEL_ERROR switches below respectively. In addition ALL logging can be enabled or disabled via the ENLOGGING_ENABLED.. function calls in your code ENDebug fmt will print if ENLOGGING_LEVEL_DEBUG is set on. ENInfo fmt will print if ENLOGGING_LEVEL_INFO is set on. ENHeading fmt will print if ENLOGGING_LEVEL_INFO is set on. ENError fmt will print if ENLOGGING_LEVEL_ERROR is.. ENLOGGING_LEVEL_DEBUG is set on. ENInfo fmt will print if ENLOGGING_LEVEL_INFO is set on. ENHeading fmt will print if ENLOGGING_LEVEL_INFO is set on. ENError fmt will print if ENLOGGING_LEVEL_ERROR is set on. Each logging entry can optionally automatically include..