Interface DebugLog

All Known Subinterfaces:
Log
All Known Implementing Classes:
AbstractLog, ConsoleColorLog, ConsoleLog, JdkLog, Log4j2Log, Slf4jLog

public interface DebugLog
DEBUG级别日志接口
Author:
wodeyangzipingpingwuqi
  • Method Details

    • isDebugEnabled

      boolean isDebugEnabled()
      Returns:
      DEBUG 等级是否开启
    • debug

      void debug(Boolean remote, Throwable t)
      打印 DEBUG 等级的日志
      Parameters:
      t - 错误对象
    • debug

      void debug(Boolean remote, String format, Object... arguments)
      打印 DEBUG 等级的日志
      Parameters:
      format - 消息模板
      arguments - 参数
    • debug

      void debug(Boolean remote, String fqcn, String format, Object... arguments)
      打印 DEBUG 等级的日志
      Parameters:
      fqcn - 完全限定类名(Fully Qualified Class Name),用于定位日志位置
      format - 消息模板
      arguments - 参数
    • debug

      void debug(Boolean remote, String msg)
      打印 DEBUG 等级的日志
      Parameters:
      msg - 日志信息
    • debug

      void debug(Boolean remote, String msg, Throwable t)
      打印 DEBUG 等级的日志
      Parameters:
      msg - 日志信息
      t - 错误对象