Skip to content

Latest commit

 

History

History
20 lines (10 loc) · 322 Bytes

README.md

File metadata and controls

20 lines (10 loc) · 322 Bytes

PXxlogger

Install

pod 'PXxlogger'

Use

PXFileLoggerConfig *config = [[PXFileLoggerConfig alloc] init];
// 存储 7 天
config.maxDuration = 7 * 24 * 60 * 60;
config.level = ATHLogLevelAll;

[PXXLoggerService configFileLogger:config];

 PXXLOG_INFO("PXxlogger", @"this is user log info");