KSTLogLevel
enum KSTLogLevel : NSInteger {}
Enum describing the current log level. This should be defined somewhere in your project as a static const variable named kKSTLogLevel with the value equal to one of the below values.
static NSInteger const kKSTLogLevel = …;
-
Nothing is logged.
Declaration
Objective-C
KSTLogLevelNone = KSTLogFlagsNone
-
Only error statements are logged.
Declaration
Objective-C
KSTLogLevelError = KSTLogFlagsError
-
Only warning and below statements are logged.
Declaration
Objective-C
KSTLogLevelWarning = KSTLogLevelError | KSTLogFlagsWarning
-
Only info and below statements are logged.
Declaration
Objective-C
KSTLogLevelInfo = KSTLogLevelWarning | KSTLogFlagsInfo
-
Only debug and below statements are logged.
Declaration
Objective-C
KSTLogLevelDebug = KSTLogLevelInfo | KSTLogFlagsDebug
-
Only verbose and below statements are logged.
Declaration
Objective-C
KSTLogLevelVerbose = KSTLogLevelDebug | KSTLogFlagsVerbose