Package akka.event
Class NoLogging$
- java.lang.Object
-
- akka.event.NoLogging$
-
- All Implemented Interfaces:
LoggingAdapter
public class NoLogging$ extends java.lang.Object implements LoggingAdapter
NoLogging is a LoggingAdapter that does absolutely nothing – no logging at all.
-
-
Field Summary
Fields Modifier and Type Field Description static NoLogging$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description NoLogging$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NoLogging$
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)
protected void
notifyWarning(java.lang.Throwable cause, 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, format1, formatImpl, info, info, info, info, info, isEnabled, log, log, log, log, log, mdc, notifyLog, warning, warning, warning, warning, warning, warning, warning, warning, warning, warning
-
-
-
-
Field Detail
-
MODULE$
public static final NoLogging$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
getInstance
public NoLogging$ getInstance()
Java API to return the reference to NoLogging- Returns:
- The NoLogging instance
-
isErrorEnabled
public final boolean isErrorEnabled()
- Specified by:
isErrorEnabled
in interfaceLoggingAdapter
-
isWarningEnabled
public final boolean isWarningEnabled()
- Specified by:
isWarningEnabled
in interfaceLoggingAdapter
-
isInfoEnabled
public final boolean isInfoEnabled()
- Specified by:
isInfoEnabled
in interfaceLoggingAdapter
-
isDebugEnabled
public final boolean isDebugEnabled()
- Specified by:
isDebugEnabled
in interfaceLoggingAdapter
-
notifyError
protected final void notifyError(java.lang.String message)
- Specified by:
notifyError
in interfaceLoggingAdapter
-
notifyError
protected final void notifyError(java.lang.Throwable cause, java.lang.String message)
- Specified by:
notifyError
in interfaceLoggingAdapter
-
notifyWarning
protected final void notifyWarning(java.lang.String message)
- Specified by:
notifyWarning
in interfaceLoggingAdapter
-
notifyWarning
protected final void notifyWarning(java.lang.Throwable cause, java.lang.String message)
- Specified by:
notifyWarning
in interfaceLoggingAdapter
-
notifyInfo
protected final void notifyInfo(java.lang.String message)
- Specified by:
notifyInfo
in interfaceLoggingAdapter
-
notifyDebug
protected final void notifyDebug(java.lang.String message)
- Specified by:
notifyDebug
in interfaceLoggingAdapter
-
-