AirshipLogHandler
public protocol AirshipLogHandler : Sendable
Protocol used by Airship to log all log messages within the SDK.
A custom log handlers should be set on AirshipConfig.logHandler.
-
Called to log a message.
Declaration
Swift
func log( logLevel: AirshipLogLevel, message: String, fileID: String, line: UInt, function: String )Parameters
logLevelThe Airship log level.
messageThe log message.
fileIDThe file ID.
lineThe line number.
functionThe function.
View on GitHub