RLMLogLevel
Objective-C
enum RLMLogLevel : NSUInteger {}
Swift
@frozen enum LogLevel : UInt, @unchecked Sendable
An enum representing different levels of sync-related logging that can be configured.
-
Nothing will ever be logged.
Declaration
Objective-C
RLMLogLevelOffSwift
case off = 0 -
Only fatal errors will be logged.
Declaration
Objective-C
RLMLogLevelFatalSwift
case fatal = 1 -
Only errors will be logged.
Declaration
Objective-C
RLMLogLevelErrorSwift
case error = 2 -
Warnings and errors will be logged.
Declaration
Objective-C
RLMLogLevelWarnSwift
case warn = 3 -
Information about sync events will be logged. Fewer events will be logged in order to avoid overhead.
Declaration
Objective-C
RLMLogLevelInfoSwift
case info = 4 -
Information about sync events will be logged. More events will be logged than with
RLMLogLevelInfo.Declaration
Objective-C
RLMLogLevelDetailSwift
case detail = 5 -
Log information that can aid in debugging.
- warning: Will incur a measurable performance impact.Declaration
Objective-C
RLMLogLevelDebugSwift
case debug = 6 -
Log information that can aid in debugging. More events will be logged than with
RLMLogLevelDebug.- warning: Will incur a measurable performance impact.Declaration
Objective-C
RLMLogLevelTraceSwift
case trace = 7 -
Log information that can aid in debugging. More events will be logged than with
RLMLogLevelTrace.- warning: Will incur a measurable performance impact.Declaration
Objective-C
RLMLogLevelAllSwift
case all = 8
View on GitHub
Install in Dash