CBLLogFileConfiguration
@interface CBLLogFileConfiguration : NSObjectLog file configuration.
- 
                  
                  The directory to store the log files. DeclarationObjective-C @property (nonatomic, readonly) NSString *_Nonnull directory;
- 
                  
                  To use plain text file format instead of the default binary format. DeclarationObjective-C @property (nonatomic, assign, unsafe_unretained, readwrite) BOOL usePlainText;
- 
                  
                  The maximum size of a log file before being rotated in bytes. The default is 500 Kilobytes. DeclarationObjective-C @property (nonatomic, assign, unsafe_unretained, readwrite) uint64_t maxSize;
- 
                  
                  The Max number of rotated log files to keep. The default value is 1 which means one backup for a total of 2 log files. DeclarationObjective-C @property (nonatomic, assign, unsafe_unretained, readwrite) NSInteger maxRotateCount;
- 
                  
                  Initializes with a directory to store the log files. DeclarationObjective-C - (nonnull instancetype)initWithDirectory:(nonnull NSString *)directory;ParametersdirectoryThe directory. Return ValueThe CBLLogFileConfiguration object. 
- 
                  
                  Not available DeclarationObjective-C - (nonnull instancetype)init;
 CBLLogFileConfiguration Class Reference
        CBLLogFileConfiguration Class Reference