MetaLogLevel

public enum MetaLogLevel: Int

Logging level. Default is error.

  • Log all debugging information (camera focus events, draw events)

    Declaration

    Swift

    case debug = 3
  • Include things like network requests and transitions

    Declaration

    Swift

    case info = 2
  • Log warnings

    Declaration

    Swift

    case warn = 1
  • Log errors. Errors soft-crash the framework and exit.

    Declaration

    Swift

    case error = 0