MGLLoggingLevel
enum MGLLoggingLevel : NSInteger {}
Constants indicating the message’s logging level.
-
None-level won’t print any messages.
Declaration
Objective-C
MGLLoggingLevelNone = 0Swift
case none = 0 -
Fault-level messages contain system-level error information.
Declaration
Objective-C
MGLLoggingLevelFaultSwift
case fault = 1 -
Error-level messages contain information that is intended to aid in process-level errors.
Declaration
Objective-C
MGLLoggingLevelErrorSwift
case error = 2 -
Warning-level messages contain warning information for potential risks.
Declaration
Objective-C
MGLLoggingLevelWarningSwift
case warning = 3 -
Info-level messages contain information that may be helpful for flow tracing but is not essential.
Declaration
Objective-C
MGLLoggingLevelInfoSwift
case info = 4 -
Verbose-level will print all messages.
Declaration
Objective-C
MGLLoggingLevelVerboseSwift
case verbose = 6
Install in Dash
MGLLoggingLevel Enumeration Reference