Contains all the available logging domains for the library
Namespace:
Couchbase.Lite.Logging
Assembly:
Couchbase.Lite (in Couchbase.Lite.dll) Version: 2.0.0-b0364
Syntax [FlagsAttribute]
public enum LogDomain
Members
| Member name | Value | Description |
---|
| All | 31 |
Gets all the logging interfaces so logic can be applied to
all of them
|
| Couchbase | 1 |
Gets the logging domain for overall information that doesn't fit into
a more specific category, and is not generated from the native LiteCore
module.
|
| Database | 2 |
Gets the logging domain for database logging, which is responsible
for logging activity between the library and the disk, including creation
of Documents / Revisions, disk I/O, etc
|
| LiteCore | 4 |
Gets the logging domain for the LiteCore logging, which is responsible
for messages sent up from the native LiteCore module
|
| Query | 8 |
Gets the logging domain for query logging, which is responsible for
logging information about in progress queries on data.
|
| Replicator | 16 |
Gets the logging domain for sync logging, which is responsible for
logging activity between the library and remote (network) endpoints.
|
See Also