CBLogLevel Constants Reference
Declared in | CBConstant.h |
---|---|
References | Cubeacon.+setLogLevel: Cubeacon.+logLevel |
CBLogLevel
CBLogLevel
enum specifies different levels of logging that could be used to limit or display more messages in logs.
Definition
typedef NS_ENUM(uint8_t, CBLogLevel ) {
CBLogLevelNone = 0,
CBLogLevelError = 1,
CBLogLevelWarning = 2,
CBLogLevelInfo = 3,
CBLogLevelDebug = 4,
};
Constants
CBLogLevelNone
-
Log level that disables all logging.
Declared In
CBConstant.h
. CBLogLevelError
-
Log level that if set is going to output error messages to the log.
Declared In
CBConstant.h
. CBLogLevelWarning
-
Log level that if set is going to output the following messages to log: - Errors - Warnings
Declared In
CBConstant.h
. CBLogLevelInfo
-
Log level that if set is going to output the following messages to log: - Errors - Warnings - Informational messages
Declared In
CBConstant.h
. CBLogLevelDebug
-
Log level that if set is going to output the following messages to log: - Errors - Warnings - Informational messages - Debug messages
Declared In
CBConstant.h
.
Declared In
CBConstant.h