AirshipExtensionLogLevel
public enum AirshipExtensionLogLevel : String, Sendable, Decodable
Represents the possible log levels.
-
Log error messages.
Used for critical errors, parse exceptions and other situations that cannot be gracefully handled.
Declaration
Swift
case error -
Log warning messages.
Used for API deprecations, invalid setup and other potentially problematic situations.
Declaration
Swift
case warn -
Log informative messages.
Used for reporting general SDK status.
Declaration
Swift
case info -
Log debugging messages.
Used for reporting general SDK status with more detailed information.
Declaration
Swift
case debug -
Log detailed verbose messages.
Used for reporting highly detailed SDK status that can be useful when debugging and troubleshooting.
Declaration
Swift
case verbose
View on GitHub