Class DefaultNoLogging

java.lang.Object
akka.http.impl.util.DefaultNoLogging

public class DefaultNoLogging extends Object
INTERNAL API

A copy of NoLogging that can be used as a place-holder for "logging not explicitly specified". It can be matched on to be overridden with default behavior.

  • Constructor Details

    • DefaultNoLogging

      public DefaultNoLogging()
  • Method Details

    • getInstance

      public static DefaultNoLogging$ getInstance()
      Java API to return the reference to NoLogging
      Returns:
      The NoLogging instance
    • isErrorEnabled

      public static final boolean isErrorEnabled()
    • isWarningEnabled

      public static final boolean isWarningEnabled()
    • isInfoEnabled

      public static final boolean isInfoEnabled()
    • isDebugEnabled

      public static final boolean isDebugEnabled()
    • notifyError

      protected static final void notifyError(String message)
    • notifyError

      protected static final void notifyError(Throwable cause, String message)
    • notifyWarning

      protected static final void notifyWarning(String message)
    • notifyInfo

      protected static final void notifyInfo(String message)
    • notifyDebug

      protected static final void notifyDebug(String message)
    • mdc

      public static scala.collection.immutable.Map<String,Object> mdc()
    • error

      public static void error(Throwable cause, String message)
    • error

      public static void error(Throwable cause, String template, Object arg1)
    • error

      public static void error(Throwable cause, String template, Object arg1, Object arg2)
    • error

      public static void error(Throwable cause, String template, Object arg1, Object arg2, Object arg3)
    • error

      public static void error(Throwable cause, String template, Object arg1, Object arg2, Object arg3, Object arg4)
    • error

      public static void error(String message)
    • error

      public static void error(String template, Object arg1)
    • error

      public static void error(String template, Object arg1, Object arg2)
    • error

      public static void error(String template, Object arg1, Object arg2, Object arg3)
    • error

      public static void error(String template, Object arg1, Object arg2, Object arg3, Object arg4)
    • warning

      public static void warning(Throwable cause, String message)
    • warning

      public static void warning(Throwable cause, String template, Object arg1)
    • warning

      public static void warning(Throwable cause, String template, Object arg1, Object arg2)
    • warning

      public static void warning(Throwable cause, String template, Object arg1, Object arg2, Object arg3)
    • warning

      public static void warning(Throwable cause, String template, Object arg1, Object arg2, Object arg3, Object arg4)
    • warning

      public static void warning(String message)
    • warning

      public static void warning(String template, Object arg1)
    • warning

      public static void warning(String template, Object arg1, Object arg2)
    • warning

      public static void warning(String template, Object arg1, Object arg2, Object arg3)
    • warning

      public static void warning(String template, Object arg1, Object arg2, Object arg3, Object arg4)
    • info

      public static void info(String message)
    • info

      public static void info(String template, Object arg1)
    • info

      public static void info(String template, Object arg1, Object arg2)
    • info

      public static void info(String template, Object arg1, Object arg2, Object arg3)
    • info

      public static void info(String template, Object arg1, Object arg2, Object arg3, Object arg4)
    • debug

      public static void debug(String message)
    • debug

      public static void debug(String template, Object arg1)
    • debug

      public static void debug(String template, Object arg1, Object arg2)
    • debug

      public static void debug(String template, Object arg1, Object arg2, Object arg3)
    • debug

      public static void debug(String template, Object arg1, Object arg2, Object arg3, Object arg4)
    • log

      public static void log(akka.event.Logging.LogLevel level, String message)
    • log

      public static void log(akka.event.Logging.LogLevel level, String template, Object arg1)
    • log

      public static void log(akka.event.Logging.LogLevel level, String template, Object arg1, Object arg2)
    • log

      public static void log(akka.event.Logging.LogLevel level, String template, Object arg1, Object arg2, Object arg3)
    • log

      public static void log(akka.event.Logging.LogLevel level, String template, Object arg1, Object arg2, Object arg3, Object arg4)
    • isEnabled

      public static final boolean isEnabled(akka.event.Logging.LogLevel level)
    • notifyLog

      public static final void notifyLog(akka.event.Logging.LogLevel level, String message)
    • format

      public static String format(String t, scala.collection.immutable.Seq<Object> arg)