Show / Hide Table of Contents

Interface ILogger

An interface for implementing a class that can accept logging messages from Couchbase Lite

Namespace: Couchbase.Lite.Logging
Assembly: Couchbase.Lite.dll
Syntax
public interface ILogger

Properties

| Improve this Doc View Source

Level

Gets the level that the logger is currently logging

Declaration
LogLevel Level { get; }
Property Value
Type Description
LogLevel

Methods

| Improve this Doc View Source

Log(LogLevel, LogDomain, String)

Performs the actual logging to the log storage

Declaration
void Log(LogLevel level, LogDomain domain, string message)
Parameters
Type Name Description
LogLevel level

The level of the message being logged

LogDomain domain

The domain of the message being logged

System.String message

The content of the message being logged

  • Improve this Doc
  • View Source
Back to top Generated by DocFX