MBLogSeverity Constants Reference
| Declared in | MBModuleLog.h |
|---|
MBLogSeverity
Specifies the relative importance of a log message.
Definition
typedef NS_ENUM(NSUInteger, MBLogSeverity ) {
MBLogSeverityVerbose = 1,
MBLogSeverityDebug = 2,
MBLogSeverityInfo = 3,
MBLogSeverityWarning = 4,
MBLogSeverityError = 5,
};
Constants
MBLogSeverityVerbose-
The lowest severity, used for detailed or frequently occurring debugging and diagnostic information. Not intended for use in production code.
Declared In
MBModuleLog.h. MBLogSeverityDebug-
Used for debugging and diagnostic information. Not intended for use in production code.
Declared In
MBModuleLog.h. MBLogSeverityInfo-
Used to indicate something of interest that is not problematic.
Declared In
MBModuleLog.h. MBLogSeverityWarning-
Used to indicate that something appears amiss and potentially problematic. The situation bears looking into before a larger problem arises.
Declared In
MBModuleLog.h. MBLogSeverityError-
The highest severity, used to indicate that something has gone wrong; a fatal error may be imminent.
Declared In
MBModuleLog.h.
Declared In
MBModuleLog.h