LogLevel
@objc(BMPLogLevel)
public enum LogLevel : Int
extension LogLevel: CustomStringConvertible
Provides the different log levels for logging an entry
-
Indicates something has happened and is purely informative
Declaration
Swift
case info = 0
-
Indicates something unexpected happened, however the player can continue to function
Declaration
Swift
case warning
-
Indicates an issue that disrupts proper functioning of the player
Declaration
Swift
case error
-
Declaration
Swift
public var description: String { get }