PlanetKitLogSizeLimit
@objc
@frozen
public enum PlanetKitLogSizeLimit : Int
extension PlanetKitLogSizeLimit: CustomStringConvertible
A type that represents the size limit for PlanetKit logs.
-
The maximum log size is 16MB.
Declaration
Swift
case small = 0
-
The maximum log size is 64MB.
Declaration
Swift
case medium = 1
-
The maximum log size is 256MB.
Declaration
Swift
case large = 2
-
The maximum log size is unlimited.
Declaration
Swift
case unlimited = 3
-
A textual representation of the size limit for PlanetKit logs.
Declaration
Swift
public var description: String { get }