LogLevel
An enumeration containing the logging levels
Declaration
Only relevant details are shown, boilerplate or standard Swift generated code is omitted
Summary
Cases
Name | Description |
Additional information that is useful to the framework developer. | |
Any information that is useful to the framework developer. | |
Same as warning but restricted to the developer consuming the framework. | |
Same as error but restricted to the developer consuming the framework. | |
Any information that is useful to the developer consuming the framework. | |
Any instruction that encountered unexpected circumstances, but was able to successfully recover and complete the instruction. | |
Any instruction that encountered unexpected circumstances, and was unable to successfully complete the instruction, but the application is able to continue normal execution. | |
Any instruction that encountered unexpected circumstances, and was unable to successfully complete the instruction, and the application is unable to continue normal execution. | |
No instructions will be logged. |
Public variables
Name | Type | Description |
String | Returns the description of the specified log level. |
Cases
Verbose
case Verbose
This level is restricted to Sybrin developers only
Additional information that is useful to the framework developer.
Debug
case Debug
This level is restricted to Sybrin developers only
Any information that is useful to the framework developer.
ProtectedWarning
case ProtectedWarning
This level is restricted to Sybrin developers only
Same as warning but restricted to the developer consuming the framework.
ProtectedError
case ProtectedError
This level is restricted to Sybrin developers only
Same as error but restricted to the developer consuming the framework.
Information
case Information
Any information that is useful to the developer consuming the framework.
Warning
case Warning
Any instruction that encountered unexpected circumstances, but was able to successfully recover and complete the instruction.
Error
case Error
Any instruction that encountered unexpected circumstances, and was unable to successfully complete the instruction, but the application is able to continue normal execution.
Critical
case Critical
Any instruction that encountered unexpected circumstances, and was unable to successfully complete the instruction, and the application is unable to continue normal execution.
None
case None
No instructions will be logged.
Public variables
description
public var description: String { get }
Example: "No instructions will be logged"
Returns the description of the specified log level.
Where this is used
Last updated