KSTLogFlags
enum KSTLogFlags : NSUInteger {}
Options mask describing what log statements should show up.
-
No logging statements will show up.
Declaration
Objective-C
KSTLogFlagsNone = 0 -
Only KSTLogError() statements will show up.
Declaration
Objective-C
KSTLogFlagsError = 1 << 0 -
KSTLogWarning() and below statements will show up.
Declaration
Objective-C
KSTLogFlagsWarning = 1 << 1 -
KSTLogInfo() and below statements will show up.
Declaration
Objective-C
KSTLogFlagsInfo = 1 << 2 -
KSTLogDebug() and below statements will show up.
Declaration
Objective-C
KSTLogFlagsDebug = 1 << 3 -
KSTLogVerbose() and below statements will show up.
Declaration
Objective-C
KSTLogFlagsVerbose = 1 << 4
KSTLogFlags Enumeration Reference