Enumeration Caseswift-log 1.6.2Logging
warning
Appropriate for messages that are not error conditions, but more severe than .notice
.
case warning
Appropriate for messages that are not error conditions, but more severe than .notice
.
case warning
import Logging
A Logging API for Swift.
enum Level
The log level.
struct Logger
A Logger
is the central type in SwiftLog
. Its central function is to emit log messages using one of the methods corresponding to a log level.
case trace
Appropriate for messages that contain information normally of use only when tracing the execution of a program.
case debug
Appropriate for messages that contain information normally of use only when debugging a program.
case info
Appropriate for informational messages.
case notice
Appropriate for conditions that are not error conditions, but that may require special handling.
case error
Appropriate for error conditions.
case critical
Appropriate for critical error conditions that usually require immediate attention.