LogDelegate
public protocol LogDelegate : AnyObject
Delegate methods for the LogManager.
-
Forwards an error from the CXoneChatSDK to the host application.
Declaration
Swift
func logError(_ message: String)
Parameters
message
The content of the error message.
-
Forwards a warning from the CXoneChatSDK to the host application.
Declaration
Swift
func logWarning(_ message: String)
Parameters
message
The content of the warning message.
-
Forwards an info from the CXoneChatSDK to the host application.
Declaration
Swift
func logInfo(_ message: String)
Parameters
message
The content of the info message.
-
Forwards a trace from the CXoneChatSDK to the host application.
Declaration
Swift
func logTrace(_ message: String)
Parameters
message
The content of the trace message.