RLMSyncLogLevel
Objective-C
enum RLMSyncLogLevel : NSUInteger {}
Swift
@_nonSendable(_assumed) @frozen enum RLMSyncLogLevel : UInt, @unchecked Sendable
An enum representing different levels of sync-related logging that can be configured.
-
Nothing will ever be logged.
Declaration
Objective-C
RLMSyncLogLevelOff
Swift
case off = 0
-
Only fatal errors will be logged.
Declaration
Objective-C
RLMSyncLogLevelFatal
Swift
case fatal = 1
-
Only errors will be logged.
Declaration
Objective-C
RLMSyncLogLevelError
Swift
case error = 2
-
Warnings and errors will be logged.
Declaration
Objective-C
RLMSyncLogLevelWarn
Swift
case warn = 3
-
Information about sync events will be logged. Fewer events will be logged in order to avoid overhead.
Declaration
Objective-C
RLMSyncLogLevelInfo
Swift
case info = 4
-
Information about sync events will be logged. More events will be logged than with
RLMSyncLogLevelInfo
.Declaration
Objective-C
RLMSyncLogLevelDetail
Swift
case detail = 5
-
Log information that can aid in debugging.
- warning: Will incur a measurable performance impact.
Declaration
Objective-C
RLMSyncLogLevelDebug
Swift
case debug = 6
-
Log information that can aid in debugging. More events will be logged than with
RLMSyncLogLevelDebug
.- warning: Will incur a measurable performance impact.
Declaration
Objective-C
RLMSyncLogLevelTrace
Swift
case trace = 7
-
Log information that can aid in debugging. More events will be logged than with
RLMSyncLogLevelTrace
.- warning: Will incur a measurable performance impact.
Declaration
Objective-C
RLMSyncLogLevelAll
Swift
case all = 8