Level
@objc(SBCLoggerLevel)
public enum Level : Int, RawRepresentable
Logger Level enumeration.
Log will not be exposed if the priority value is lower than the configured log level. Logger Level follows the following priority:
info < warning < error < none.
- Cases:
- info: Informational messages that are general to the application.
Warning
Potentially problematic situation that may indicate potential problems.- error: Error events that may represent the failure of normal program execution.
- none: No logging.
- Tag: LoggerLevel
-
Informational messages that are general to the application.
Since
1.1.0Declaration
Swift
case info
-
Potentially problematic situation that may indicate potential problems.
Since
1.1.0Declaration
Swift
case warning
-
Error events that may represent the failure of normal program execution.
Since
1.1.0Declaration
Swift
case error
-
No logging.
Since
1.1.0Declaration
Swift
case none