iOS 简单日志系统

本文主要探讨了iOS平台上如何构建一个简单而实用的日志系统,包括日志的记录、分级、存储以及在调试和发布环境下的不同处理策略。通过学习,你将能够为你的iOS应用定制合适的日志解决方案。
摘要由CSDN通过智能技术生成
#define YostarDebugLogLevel(level, fmt, ...) \
[YostarDebugLog logLevel:level file:__FILE__ function:__PRETTY_FUNCTION__ line:__LINE__ format:(fmt), ##__VA_ARGS__]

#define YostarDebugLog(fmt, ...) \
YostarDebugLogLevel(YostarDebugLogLevelInfo, (fmt), ##__VA_ARGS__)

#define YostarDebugWarningLog(fmt, ...) \
YostarDebugLogLevel(YostarDebugLogLevelWarning, (fmt), ##__VA_ARGS__)

#define YostarDebugErrorLog(fmt, ...) \
YostarDebugLogLevel(YostarDebugLogLevelError, (fmt), ##__VA_ARGS__)

typedef NS_ENUM(NSUInteger, YostarDebugLogLevel) {
    YostarDebugLogLevelInfo = 1,
    YostarDebugLogLevelWarning,
    YostarDebugLogLevelError
};

@interface YostarDebugLog : NSObject

+ (BOOL)isDebugLogEnabled;

+ (void)enableDebugLog:(BOOL)enableLog;

+ (void)logLevel:(NSInteger)level file:(const char *)file function:(const char *)function line:(NSUInteger)line format:(NSString *)format, ...;
static BOOL _enableLog;
+ (void)initialize{
    _enableLog = NO;
}

+ (BOOL)isDebugLogEnabled{
    return _enableLog;
}

+ (void)enableDebugLog:(BOOL)enableLog{
    _enableLog = enableLog;
}

static id sharedInstance = nil;
+ (instancetype)sharedInstance{
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        sharedInstance = [[self alloc] init];
    });
    return sharedInstance;
}

+ (void)logLevel:(NSInteger)level file:(const char *)file function:(const char *)function line:(NSUInteger)line format:(NSString *)format, ...{
    @try {
        //参数链表指针
        va_list args;
        //遍历开始
        va_start(args, format);
        NSString *message = [[NSString alloc] initWithFormat:format arguments:args];
        [self.sharedInstance logMessage:message level:level file:file function:function line:line];
        //结束遍历
        va_end(args);
    } @catch (NSException *exception) {
        NSLog(@"⚠️WARN::%@", exception);
    } @finally {
        
    }
}

- (void)logMessage:(NSString *)message level:(NSInteger)level file:(const char *)file function:(const char *)function line:(NSUInteger)line{
    NSString *logMessage = [NSString stringWithFormat:@"[YostarLog][%@][line:%lu]: %s %s %@", [self descriptionForLevel:level], (unsigned long)line, function, "", message];
    if (_enableLog) {
        NSLog(@"%@", logMessage);
    }
}

- (NSString *)descriptionForLevel:(YostarDebugLogLevel)level{
    NSString *desc = nil;
    switch (level) {
        case YostarDebugLogLevelInfo:
            desc = @"INFO";
            break;
        case YostarDebugLogLevelWarning:
            desc = @"⚠️WARN";
            break;
        case YostarDebugLogLevelError:
            desc = @"❌ERROR";
            break;
        default:
            desc = @"UNKNOW";
            break;
    }
    return desc;
}

附:我的博客地址

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值