Click or drag to resize

LogDomain Enumeration

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.0.0-b0713
Syntax
C#
[FlagsAttribute]
public enum LogDomain
Members
  Member nameValueDescription
All31 Gets all the logging interfaces so logic can be applied to all of them
Couchbase1 Gets the logging domain for overall information that doesn't fit into a more specific category.
Database2 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
Query4 Gets the logging domain for query logging, which is responsible for logging information about in progress queries on data.
Replicator8 Gets the logging domain for sync logging, which is responsible for logging activity between the library and remote (network) endpoints.
Network16 Gest the logging domain for network related logging (web socket connections, BLIP protocol, etc)
See Also