Enum LogLevel
Specifies the criticality level above which messages will be logged by the default sync client logger.
Namespace: Realms.Sync
Assembly: Realm.dll
Syntax
public enum LogLevel
Fields
| Name | Description |
|---|---|
| All | Log everything. This will seriously harm the performance of the sync client and should never be used in production scenarios. |
| Debug | Reveal information that can aid debugging, no longer paying attention to efficiency. |
| Detail | Same as 'Info', but prioritize completeness over minimalism. |
| Error | Log errors only. |
| Fatal | Log only fatal errors. |
| Info | Log operational sync client messages, but in a minimalistic fashion to avoid general overhead from logging and to keep volume down. |
| Off | Log nothing. |
| Trace | A version of 'debug' that allows for very high volume output. This may seriously affect the performance of the sync client. |
| Warn | Log errors and warnings. |