Class FileLogger

java.lang.Object
com.couchbase.lite.FileLogger
All Implemented Interfaces:
Logger

@Deprecated public final class FileLogger extends Object implements Logger
Deprecated.
Use com.couchbase.lite.logging.FileLogSink
A logger for writing to a file in the application's storage so that log messages can persist durably after the application has stopped or encountered a problem. Each log level is written to a separate file.
  • Method Details

    • getLevel

      @NonNull public LogLevel getLevel()
      Deprecated.
      Gets the level that will be logged via this logger.
      Specified by:
      getLevel in interface Logger
      Returns:
      The maximum level to log
    • setLevel

      public void setLevel(@NonNull LogLevel level)
      Deprecated.
      Sets the lowest level that will be logged to the logging files.
      Parameters:
      level - The lowest (most verbose) level to include in the logs
    • getConfig

      @Nullable public LogFileConfiguration getConfig()
      Deprecated.
      Gets the configuration currently in use by the file logger. Note the configuration returned from this method is read-only and cannot be modified. An attempt to modify it will throw an exception.
      Returns:
      The configuration currently in use
    • setConfig

      public void setConfig(@Nullable LogFileConfiguration newConfig)
      Deprecated.
      Sets the configuration for use by the file logger.
      Parameters:
      newConfig - The configuration to use
    • log

      public void log(@NonNull LogLevel level, @NonNull LogDomain domain, @NonNull String message)
      Deprecated.
      Description copied from interface: Logger
      Performs the actual logging logic
      Specified by:
      log in interface Logger
      Parameters:
      level - The level of the message to log
      domain - The domain of the message to log
      message - The content of the message to log