LogCategory

public enum LogCategory : String
extension LogCategory: CustomStringConvertible

Defines log category based on what kind of data is being logged

  • NetworkAgent related log

    Declaration

    Swift

    case networkAgent = "Network Agent"
  • Module related log

    Declaration

    Swift

    case modules = "Modules"
  • BoxCLient related log

    Declaration

    Swift

    case client = "Client"
  • sdk

    The general log for BoxSDK

    Declaration

    Swift

    case sdk = "Box SDK"
  • Log category string title

    Declaration

    Swift

    public var description: String { get }