RTBLogLevel
@objc public enum RTBLogLevel : Int, CaseIterable {
/// Verbose-level messages are intended to capture verbose, debug, info, warning and error messages. It’s convenient in an intensive development environment.
case verbose = 1
/// Debug-level messages are intended to capture debug, info, warning and error messages. It’s convenient in a normal development environment.
case debug
/// Info-level messages are intended to capture info, warning and error messages. Info-level may be helpful but isn’t enough for troubleshooting.
case info
/// Warn-level messages are intended to capture warning and error messages only.
case warn
/// Error-level messages are intended to capture error messages only.
case error
}
Last updated