FWLogType
enum FWLogType : NSUInteger {}
日志类型定义
@const FWLogTypeError 错误类型,0…00001 @const FWLogTypeWarn 警告类型,0…00010 @const FWLogTypeInfo 信息类型,0…00100 @const FWLogTypeDebug 调试类型,0…01000 @const FWLogTypeTrace 跟踪类型,0…10000
-
Undocumented
Declaration
Objective-C
FWLogTypeError = 1 << 0
-
Undocumented
Declaration
Objective-C
FWLogTypeWarn = 1 << 1
-
Undocumented
Declaration
Objective-C
FWLogTypeInfo = 1 << 2
-
Undocumented
Declaration
Objective-C
FWLogTypeDebug = 1 << 3
-
Undocumented
Declaration
Objective-C
FWLogTypeTrace = 1 << 4