PTLogOutputLevel
enum PTLogOutputLevel : NSUInteger {}
The log message output level of a logger.
-
No log messages will be outputted.
Declaration
Objective-C
PTLogOutputLevelNone = 0
Swift
case none = 0
-
Output will include error log messages.
Declaration
Objective-C
PTLogOutputLevelError = (PTLogOutputLevelNone) | (PTLogMessageError)
Swift
case error = 1
-
Output will include error and warning log messages.
Declaration
Objective-C
PTLogOutputLevelWarning = (PTLogOutputLevelError) | (PTLogMessageWarning)
Swift
case warning = 3
-
Output will include error, warning, and info log messages.
Declaration
Objective-C
PTLogOutputLevelInfo = (PTLogOutputLevelWarning) | (PTLogMessageInfo)
Swift
case info = 7
-
Output will include error, warning, info, and debug log messages.
Declaration
Objective-C
PTLogOutputLevelDebug = (PTLogOutputLevelInfo) | (PTLogMessageDebug)
Swift
case debug = 15
-
Output will include error, warning, info, debug, and trace log messages.
Declaration
Objective-C
PTLogOutputLevelTrace = (PTLogOutputLevelDebug) | (PTLogMessageTrace)
Swift
case trace = 31