RLMSyncLogLevel
enum RLMSyncLogLevel : NSUInteger {}
An enum representing different levels of sync-related logging that can be configured.
-
Nothing will ever be logged.
Declaration
Objective-C
RLMSyncLogLevelOffSwift
case off = 0 -
Only fatal errors will be logged.
Declaration
Objective-C
RLMSyncLogLevelFatalSwift
case fatal = 1 -
Only errors will be logged.
Declaration
Objective-C
RLMSyncLogLevelErrorSwift
case error = 2 -
Warnings and errors will be logged.
Declaration
Objective-C
RLMSyncLogLevelWarnSwift
case warn = 3 -
Information about sync events will be logged. Fewer events will be logged in order to avoid overhead.
Declaration
Objective-C
RLMSyncLogLevelInfoSwift
case info = 4 -
Information about sync events will be logged. More events will be logged than with
RLMSyncLogLevelInfo.Declaration
Objective-C
RLMSyncLogLevelDetailSwift
case detail = 5 -
Log information that can aid in debugging.
- warning: Will incur a measurable performance impact.Declaration
Objective-C
RLMSyncLogLevelDebugSwift
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
RLMSyncLogLevelTraceSwift
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
RLMSyncLogLevelAllSwift
case all = 8
View on GitHub
Install in Dash
RLMSyncLogLevel Enum Reference