Class Log
The class that stores the three available logging facilities in Couchbase Lite
Inheritance
System.Object
Log
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Couchbase.Lite.Logging
Assembly: Couchbase.Lite.dll
Syntax
public sealed class Log
Properties
| Improve this Doc View SourceConsole
Gets the logging facility that logs to a debugging console
Declaration
public IConsoleLogger Console { get; }
Property Value
Type | Description |
---|---|
IConsoleLogger |
Custom
Gets or sets the user defined logging facility
Declaration
public ILogger Custom { get; set; }
Property Value
Type | Description |
---|---|
ILogger |
File
Gets the logging facility that logs to files on the disk
Declaration
public FileLogger File { get; }
Property Value
Type | Description |
---|---|
FileLogger |