开发过程中,我们会在项目中添加很多日志以便调试,打包后这些日志并不需要,我们可以将这些日志屏蔽掉。
一、添加宏定义
#ifdef DEBUG
#define DLog(s,...) NSLog(@"%s LINE:%d < %@ >",__FUNCTION__, __LINE__, [NSString stringWithFormat:(s), ##__VA_ARGS__]);
#define DMethod() NSLog(@"%s", __func__);
#else
#define DLog(...);
#define DMethod();
#endif
在使用时直接使用Dlog
就可以在release模式去掉日志
二、使用开关日志输出
添加日志输出管理方法
1. 首先在.h中添加方法
#pragma mark -- 日志方法
// 设置日志输出状态
+ (void)setLogEnable:(BOOL)enable;
// 获取日志输出状态
+ (BOOL)getLogEnable;
// 日志输出方法
+ (void)customLogWithFunction:(const char *)function lineNumber:(int)lineNumber formatString:(NSString *)formatString;
2. 在.m文件中,设置静态变量来存储日志输出状态值
// 默认值为NO
static BOOL kLogEnable = NO;
3. 实现类方法
#pragma mark -- 日志方法
// 设置日志输出状态
+ (void)setLogEnable:(BOOL)enable {
kLogEnable = enable;
}
// 获取日志输出状态
+ (BOOL)getLogEnable {
return kLogEnable;
}
// 日志输出方法
+ (void)customLogWithFunction:(const char *)function lineNumber:(int)lineNumber formatString:(NSString *)formatString {
if ([self getLogEnable]) {
// 开启了Log
NSLog(@"%s[%d]%@", function, lineNumber, formatString);
}
}
4. 添加宏定义
#define DLog(format,...) [STATUtils customLogWithFunction:__FUNCTION__ lineNumber:__LINE__ formatString:[NSString stringWithFormat:format, ##__VA_ARGS__]]
使用宏定义打印就可以自己控制日志输出
5. 在使用时,实现控制方法
[Utils setLogEnable:YES];