LoggerService
public protocol LoggerService
                Describes the available operations to log information
- 
                  
                  
Desired log level
Declaration
Swift
var level: LogLevel { get } - 
                  
                  
Logs a Message with the specific Level
Declaration
Swift
func log(withLevel level: LogLevel, message: String, redacted: Bool)Parameters
levelDescribes the level
messageThe message to be logged
redactedIndicates if the message should be redacted when there’s not a debugger attached to the app
 
        LoggerService Protocol Reference