Click or drag to resize

ILogger Interface

An interface describing an object capable of receiving Couchbase Lite log messages

Namespace:  Couchbase.Lite.Util
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 1.4.1-b107
Syntax
C#
public interface ILogger
Methods
  NameDescription
Public methodD(String, String)
Send a DEBUG message.
Public methodD(String, String, Exception)
Send a DEBUG message and log the exception.
Public methodD(String, String, Object)
Send a DEBUG message
Public methodE(String, String)
Send an ERROR message.
Public methodE(String, String, Exception)
Send a ERROR message and log the exception.
Public methodE(String, String, Object)
Send a ERROR message
Public methodI(String, String)
Send an INFO message.
Public methodI(String, String, Exception)
Send a INFO message and log the exception.
Public methodI(String, String, Object)
Send a INFO message
Public methodV(String, String)
Send a VERBOSE message.
Public methodV(String, String, Exception)
Send a VERBOSE message and log the exception.
Public methodV(String, String, Object)
Send a VERBOSE message
Public methodW(String, Exception) Obsolete.
Send a WARN message.
Public methodW(String, String)
Send a WARN message.
Public methodW(String, String, Exception)
Send a WARN message and log the exception.
Public methodW(String, String, Object)
Send a WARN message
Top
See Also