WebcomLog
public struct WebcomLog : CustomStringConvertible, CustomDebugStringConvertibleA value that contains a log.
Logs produced by the SDK use this type.
- 
                  
                  A value representing a log level. See moreDeclarationSwift @frozen public enum Level : Int, CaseIterable, Hashable, SelfIdentifiable
- 
                  
                  A value representing a log category. Categories are used to group logs related to the same subject. See moreDeclarationSwift public struct Category : Hashable
- 
                  
                  A log with empty content. DeclarationSwift public static let empty: WebcomLog
- 
                  
                  The date when the log was produced. DeclarationSwift public let date: Date
- 
                  
                  The level of the log. DeclarationSwift public let level: Level
- 
                  
                  The category of the log. DeclarationSwift public let category: Category
- 
                  
                  The message of the log. DeclarationSwift public let message: String
- 
                  
                  The location in source code where the log was produced. DeclarationSwift public let location: WebcomLocation
- 
                  
                  Sends the log to the os.loglogging system.This method is designed to be used by applications when they set the Webcom.logclosure.With iOS 9, this method uses NSLoginstead ofos_log.DeclarationSwift public func systemLog()
- 
                  
                  Prints the log to the standard output. This method is designed to be used by applications when they set the Webcom.logclosure.DeclarationSwift public func print()
- 
                  
                  DeclarationSwift public var description: String { get }
- 
                  
                  DeclarationSwift public var debugDescription: String { get }
