SocketLogger
public protocol SocketLogger : class
Represents a class will log client events.
-
Whether to log or not
Declaration
Swift
var log: Bool
-
log(_:type:args:)Default implementationNormal log messages
Default Implementation
Default implementation.
Declaration
Swift
func log(_ message: String, type: String, args: Any...) -
error(_:type:args:)Default implementationError Messages
Default Implementation
Default implementation.
Declaration
Swift
func error(_ message: String, type: String, args: Any...)
SocketLogger Protocol Reference