LogFileConfiguration
public class LogFileConfigurationLog file configuration.
- 
                  
                  The directory to store the log files. DeclarationSwift public let directory: String
- 
                  
                  To use plain text file format instead of the default binary format. DeclarationSwift public var usePlainText: Bool { get set }
- 
                  
                  The maximum size of a log file before being rotated in bytes. The default is LogFileConfiguration.defaultMaxSizeDeclarationSwift public var maxSize: UInt64 { get set }
- 
                  
                  The Max number of rotated log files to keep. The default value is LogFileConfiguration.defaultMaxRotateCountDeclarationSwift public var maxRotateCount: Int { get set }
- 
                  
                  Initializes with a directory to store the log files. DeclarationSwift public init(directory: String)
- 
                  
                  [false] Plaintext is not used, and instead binary encoding is used in log files DeclarationSwift static let defaultUsePlainText: Bool
- 
                  
                  [524288] 512 KiB for the size of a log file DeclarationSwift static let defaultMaxSize: UInt64
- 
                  
                  [1] 1 rotated file present (2 total, including the currently active log file) DeclarationSwift static let defaultMaxRotateCount: Int
 LogFileConfiguration Class Reference
        LogFileConfiguration Class Reference