Class Log

java.lang.Object
com.couchbase.lite.Log

@Deprecated public final class Log extends Object
Deprecated.
Use com.couchbase.lite.logging.LogSinks
Holder for the three Couchbase Lite loggers: console, file, and custom.
  • Method Details

    • getConsole

      @Deprecated @NonNull public ConsoleLogger getConsole()
      Deprecated.
      Use com.couchbase.lite.logging.LogSinks.getConsole
      Gets the logger that writes to the system console
      Returns:
      The logger that writes to the system console
    • getFile

      @Deprecated @NonNull public FileLogger getFile()
      Deprecated.
      Use com.couchbase.lite.logging.LogSinks.getFile
      Gets the logger that writes to log files
      Returns:
      The logger that writes to log files
    • getCustom

      @Deprecated @Nullable public Logger getCustom()
      Deprecated.
      Use com.couchbase.lite.logging.LogSinks.getCustom
      Gets the custom logger that was registered by the application (if any)
      Returns:
      The custom logger that was registered by the application, or null.
    • setCustom

      @Deprecated public void setCustom(@Nullable Logger customLogger)
      Deprecated.
      Use com.couchbase.lite.logging.LogSinks.setCustom
      Sets an application specific logging method
      Parameters:
      customLogger - A Logger implementation that will receive logging messages