Difference between NSLog and DLog

后端 未结 5 1425
栀梦
栀梦 2020-12-08 07:25

Can anyone tell me what the difference is between NSLog and DLog?

I found about this DLog when I was looking over this project code: http:/

5条回答
  •  清歌不尽
    2020-12-08 08:10

    Hi, Below the macro cmd for NSLOG replacement file format and also below i mentioned undef Macro as well as

    Definition:

    #define _LOG_TO_CONSOLE_ //#undef _LOG_TO_CONSOLE_
    #ifdef _LOG_TO_CONSOLE_
    #define DLog(format, ...) NSLog(format, ##__VA_ARGS__)
    #else
    #define DLog(format, ...)
    #endif
    

提交回复
热议问题