Contains all the available logging domains for the library. Each log domain writes messages
regarding a specific area of Couchbase Lite operation.
Namespace:
Couchbase.Lite.Logging
Assembly:
Couchbase.Lite (in Couchbase.Lite.dll) Version: 2.1.0-b0232
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.
|
| 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
|
| Query | 4 |
Gets the logging domain for query logging, which is responsible for
logging information about in progress queries on data.
|
| Replicator | 8 |
Gets the logging domain for sync logging, which is responsible for
logging activity between the library and remote (network) endpoints.
|
| Network | 16 |
Gest the logging domain for network related logging (web socket connections,
BLIP protocol, etc)
|
See Also