Click or drag to resize

LogDomain Enumeration

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
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, and is not generated from the native LiteCore module.
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
LiteCore4 Gets the logging domain for the LiteCore logging, which is responsible for messages sent up from the native LiteCore module
Query8 Gets the logging domain for query logging, which is responsible for logging information about in progress queries on data.
Replicator16 Gets the logging domain for sync logging, which is responsible for logging activity between the library and remote (network) endpoints.
See Also