iOS开发之NSLog打印控制

开发过程中,我们会在项目中添加很多日志以便调试,打包后这些日志并不需要,我们可以将这些日志屏蔽掉。

一、添加宏定义

#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];
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值