AATLogLevel
@objc public enum AATLogLevel : Int {
/// 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
}
typedef SWIFT_ENUM(NSInteger, AATLogLevel, open) {
/// Verbose-level messages are intended to capture verbose, debug, info, warning and error messages. It’s convenient in an intensive development environment.
AATLogLevelVerbose = 1,
/// Debug-level messages are intended to capture debug, info, warning and error messages. It’s convenient in a normal development environment.
AATLogLevelDebug = 2,
/// Info-level messages are intended to capture info, warning and error messages. Info-level may be helpful but isn’t enough for troubleshooting.
AATLogLevelInfo = 3,
/// Warn-level messages are intended to capture warning and error messages only.
AATLogLevelWarn = 4,
/// Error-level messages are intended to capture error messages only.
AATLogLevelError = 5,
};
Last updated