Package akka.http.impl.util
Class DefaultNoLogging$
- java.lang.Object
-
- akka.http.impl.util.DefaultNoLogging$
-
- All Implemented Interfaces:
akka.event.LoggingAdapter
public class DefaultNoLogging$ extends java.lang.Object implements akka.event.LoggingAdapter
INTERNAL APIA 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.
-
-
Field Summary
Fields Modifier and Type Field Description static DefaultNoLogging$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description DefaultNoLogging$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DefaultNoLogging$
getInstance()
Java API to return the reference to NoLoggingboolean
isDebugEnabled()
boolean
isErrorEnabled()
boolean
isInfoEnabled()
boolean
isWarningEnabled()
protected void
notifyDebug(java.lang.String message)
protected void
notifyError(java.lang.String message)
protected void
notifyError(java.lang.Throwable cause, java.lang.String message)
protected void
notifyInfo(java.lang.String message)
protected void
notifyWarning(java.lang.String message)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface akka.event.LoggingAdapter
debug, debug, debug, debug, debug, error, error, error, error, error, error, error, error, error, error, format, info, info, info, info, info, isEnabled, log, log, log, log, log, mdc, notifyLog, notifyWarning, warning, warning, warning, warning, warning, warning, warning, warning, warning, warning
-
-
-
-
Field Detail
-
MODULE$
public static final DefaultNoLogging$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
getInstance
public DefaultNoLogging$ getInstance()
Java API to return the reference to NoLogging- Returns:
- The NoLogging instance
-
isErrorEnabled
public final boolean isErrorEnabled()
- Specified by:
isErrorEnabled
in interfaceakka.event.LoggingAdapter
-
isWarningEnabled
public final boolean isWarningEnabled()
- Specified by:
isWarningEnabled
in interfaceakka.event.LoggingAdapter
-
isInfoEnabled
public final boolean isInfoEnabled()
- Specified by:
isInfoEnabled
in interfaceakka.event.LoggingAdapter
-
isDebugEnabled
public final boolean isDebugEnabled()
- Specified by:
isDebugEnabled
in interfaceakka.event.LoggingAdapter
-
notifyError
protected final void notifyError(java.lang.String message)
- Specified by:
notifyError
in interfaceakka.event.LoggingAdapter
-
notifyError
protected final void notifyError(java.lang.Throwable cause, java.lang.String message)
- Specified by:
notifyError
in interfaceakka.event.LoggingAdapter
-
notifyWarning
protected final void notifyWarning(java.lang.String message)
- Specified by:
notifyWarning
in interfaceakka.event.LoggingAdapter
-
notifyInfo
protected final void notifyInfo(java.lang.String message)
- Specified by:
notifyInfo
in interfaceakka.event.LoggingAdapter
-
notifyDebug
protected final void notifyDebug(java.lang.String message)
- Specified by:
notifyDebug
in interfaceakka.event.LoggingAdapter
-
-