Enum LogLevel
Specifies the criticality level above which messages will be logged by the default sync client logger.
Namespace: Realms.Logging
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. |
Trace | A version of 'debug' that allows for very high volume output. This may seriously affect the performance of the sync client. |
Debug | Reveal information that can aid debugging, no longer paying attention to efficiency. |
Detail | Same as 'Info', but prioritize completeness over minimalism. |
Info | Log operational sync client messages, but in a minimalistic fashion to avoid general overhead from logging and to keep volume down. |
Warn | Log errors and warnings. |
Error | Log errors only. |
Fatal | Log only fatal errors. |
Off | Log nothing. |