LoggingLevel

public enum LoggingLevel

The logs console output data amount level where error is a minimum amount and verbose is a maximum.

This affects only the console output and does not affect the internal logs file. Internal logs file will still log verbose level to have all details for future debugging.

  • All messages will be printed into console output.

    Declaration

    Swift

    case verbose
  • Includes debug level messages and helpful data to investigate possible issues.

    Declaration

    Swift

    case debug
  • Includes warn level messages and informational messages that can be ignored.

    Declaration

    Swift

    case info
  • Includes error level messages and not critical warning information.

    Declaration

    Swift

    case warn
  • Only error messages that most likely need action or at least attention. Min required level.

    Declaration

    Swift

    case error