MDLogLevel

@objc
public enum MDLogLevel : Int, CaseIterable
MDLogLevel Description
MDLogLevel.OFF Turns off the SDK logs. As mentioned above, this API should not be integrated in production apps. Using this log level is also not allowed.
MDLogLevel.FATAL Will print only fatal logs. e.g. In case a fatal error occurred, the SDK is likely to crash.
MDLogLevel.ERROR Will print error logs and will also include the levels above. e.g. An error occurred. It is likely the error is recoverable and available info about what happened will output to console.
MDLogLevel.WARN Will print warn logs and will also include the levels above. e.g. a warning message which may eventually indicate on a possible error.
MDLogLevel.INFO Will print info logs and will also include the levels above. e.g. a standard info message.
MDLogLevel.DEBUG Will print debug logs and will also include the levels above. e.g. a standard debug message.
  • off

    Undocumented

    Declaration

    Swift

    case off
  • Undocumented

    Declaration

    Swift

    case fatal
  • Undocumented

    Declaration

    Swift

    case error
  • Undocumented

    Declaration

    Swift

    case warn
  • Undocumented

    Declaration

    Swift

    case info
  • Undocumented

    Declaration

    Swift

    case debug
  • Undocumented

    Declaration

    Swift

    public func stringRepresentation() -> String