Package akka.event

Class NoMarkerLogging$

  • All Implemented Interfaces:
    LoggingAdapter

    public class NoMarkerLogging$
    extends MarkerLoggingAdapter
    NoLogging is a MarkerLoggingAdapter that does absolutely nothing – no logging at all.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static NoMarkerLogging$ MODULE$
      Static reference to the singleton instance of this Scala object.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void debug​(LogMarker marker, java.lang.String message)
      Log message at debug level.
      void debug​(LogMarker marker, java.lang.String template, java.lang.Object arg1)
      Message template with 1 replacement argument.
      void debug​(LogMarker marker, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2)
      Message template with 2 replacement arguments.
      void debug​(LogMarker marker, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3)
      Message template with 3 replacement arguments.
      void debug​(LogMarker marker, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3, java.lang.Object arg4)
      Message template with 4 replacement arguments.
      void error​(LogMarker marker, java.lang.String message)
      Log message at error level, without providing the exception that caused the error.
      void error​(LogMarker marker, java.lang.String template, java.lang.Object arg1)
      Message template with 1 replacement argument.
      void error​(LogMarker marker, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2)
      Message template with 2 replacement arguments.
      void error​(LogMarker marker, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3)
      Message template with 3 replacement arguments.
      void error​(LogMarker marker, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3, java.lang.Object arg4)
      Message template with 4 replacement arguments.
      void error​(LogMarker marker, java.lang.Throwable cause, java.lang.String message)
      Log message at error level, including the exception that caused the error.
      void error​(LogMarker marker, java.lang.Throwable cause, java.lang.String template, java.lang.Object arg1)
      Message template with 1 replacement argument.
      void error​(LogMarker marker, java.lang.Throwable cause, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2)
      Message template with 2 replacement arguments.
      void error​(LogMarker marker, java.lang.Throwable cause, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3)
      Message template with 3 replacement arguments.
      void error​(LogMarker marker, java.lang.Throwable cause, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3, java.lang.Object arg4)
      Message template with 4 replacement arguments.
      NoMarkerLogging$ getInstance()
      Java API to return the reference to NoLogging
      void info​(LogMarker marker, java.lang.String message)
      Log message at info level.
      void info​(LogMarker marker, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2)
      Message template with 2 replacement arguments.
      void info​(LogMarker marker, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3)
      Message template with 3 replacement arguments.
      void info​(LogMarker marker, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3, java.lang.Object arg4)
      Message template with 4 replacement arguments.
      boolean 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)  
      void warning​(LogMarker marker, java.lang.String message)
      Log message at warning level.
      void warning​(LogMarker marker, java.lang.String template, java.lang.Object arg1)
      Message template with 1 replacement argument.
      void warning​(LogMarker marker, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2)
      Message template with 2 replacement arguments.
      void warning​(LogMarker marker, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3)
      Message template with 3 replacement arguments.
      void warning​(LogMarker marker, java.lang.String template, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3, java.lang.Object arg4)
      Message template with 4 replacement arguments.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • MODULE$

        public static final NoMarkerLogging$ MODULE$
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • NoMarkerLogging$

        public NoMarkerLogging$()
    • Method Detail

      • getInstance

        public NoMarkerLogging$ getInstance()
        Java API to return the reference to NoLogging
        Returns:
        The NoLogging instance
      • error

        public final void error​(LogMarker marker,
                                java.lang.Throwable cause,
                                java.lang.String message)
        Description copied from class: MarkerLoggingAdapter
        Log message at error level, including the exception that caused the error. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        error in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • error

        public final void error​(LogMarker marker,
                                java.lang.Throwable cause,
                                java.lang.String template,
                                java.lang.Object arg1)
        Description copied from class: MarkerLoggingAdapter
        Message template with 1 replacement argument. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

        If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

        Overrides:
        error in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • error

        public final void error​(LogMarker marker,
                                java.lang.Throwable cause,
                                java.lang.String template,
                                java.lang.Object arg1,
                                java.lang.Object arg2)
        Description copied from class: MarkerLoggingAdapter
        Message template with 2 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        error in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • error

        public final void error​(LogMarker marker,
                                java.lang.Throwable cause,
                                java.lang.String template,
                                java.lang.Object arg1,
                                java.lang.Object arg2,
                                java.lang.Object arg3)
        Description copied from class: MarkerLoggingAdapter
        Message template with 3 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        error in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • error

        public final void error​(LogMarker marker,
                                java.lang.Throwable cause,
                                java.lang.String template,
                                java.lang.Object arg1,
                                java.lang.Object arg2,
                                java.lang.Object arg3,
                                java.lang.Object arg4)
        Description copied from class: MarkerLoggingAdapter
        Message template with 4 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        error in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • error

        public final void error​(LogMarker marker,
                                java.lang.String message)
        Description copied from class: MarkerLoggingAdapter
        Log message at error level, without providing the exception that caused the error. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        error in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • error

        public final void error​(LogMarker marker,
                                java.lang.String template,
                                java.lang.Object arg1)
        Description copied from class: MarkerLoggingAdapter
        Message template with 1 replacement argument. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

        If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

        Overrides:
        error in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • error

        public final void error​(LogMarker marker,
                                java.lang.String template,
                                java.lang.Object arg1,
                                java.lang.Object arg2)
        Description copied from class: MarkerLoggingAdapter
        Message template with 2 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        error in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • error

        public final void error​(LogMarker marker,
                                java.lang.String template,
                                java.lang.Object arg1,
                                java.lang.Object arg2,
                                java.lang.Object arg3)
        Description copied from class: MarkerLoggingAdapter
        Message template with 3 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        error in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • error

        public final void error​(LogMarker marker,
                                java.lang.String template,
                                java.lang.Object arg1,
                                java.lang.Object arg2,
                                java.lang.Object arg3,
                                java.lang.Object arg4)
        Description copied from class: MarkerLoggingAdapter
        Message template with 4 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        error in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • warning

        public final void warning​(LogMarker marker,
                                  java.lang.String message)
        Description copied from class: MarkerLoggingAdapter
        Log message at warning level. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        warning in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • warning

        public final void warning​(LogMarker marker,
                                  java.lang.String template,
                                  java.lang.Object arg1)
        Description copied from class: MarkerLoggingAdapter
        Message template with 1 replacement argument. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

        If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

        Overrides:
        warning in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • warning

        public final void warning​(LogMarker marker,
                                  java.lang.String template,
                                  java.lang.Object arg1,
                                  java.lang.Object arg2)
        Description copied from class: MarkerLoggingAdapter
        Message template with 2 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        warning in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • warning

        public final void warning​(LogMarker marker,
                                  java.lang.String template,
                                  java.lang.Object arg1,
                                  java.lang.Object arg2,
                                  java.lang.Object arg3)
        Description copied from class: MarkerLoggingAdapter
        Message template with 3 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        warning in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • warning

        public final void warning​(LogMarker marker,
                                  java.lang.String template,
                                  java.lang.Object arg1,
                                  java.lang.Object arg2,
                                  java.lang.Object arg3,
                                  java.lang.Object arg4)
        Description copied from class: MarkerLoggingAdapter
        Message template with 4 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        warning in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • info

        public final void info​(LogMarker marker,
                               java.lang.String message)
        Description copied from class: MarkerLoggingAdapter
        Log message at info level. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        info in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • info

        public final void info​(LogMarker marker,
                               java.lang.String template,
                               java.lang.Object arg1,
                               java.lang.Object arg2)
        Description copied from class: MarkerLoggingAdapter
        Message template with 2 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        info in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • info

        public final void info​(LogMarker marker,
                               java.lang.String template,
                               java.lang.Object arg1,
                               java.lang.Object arg2,
                               java.lang.Object arg3)
        Description copied from class: MarkerLoggingAdapter
        Message template with 3 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        info in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • info

        public final void info​(LogMarker marker,
                               java.lang.String template,
                               java.lang.Object arg1,
                               java.lang.Object arg2,
                               java.lang.Object arg3,
                               java.lang.Object arg4)
        Description copied from class: MarkerLoggingAdapter
        Message template with 4 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        info in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • debug

        public final void debug​(LogMarker marker,
                                java.lang.String message)
        Description copied from class: MarkerLoggingAdapter
        Log message at debug level. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        debug in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • debug

        public final void debug​(LogMarker marker,
                                java.lang.String template,
                                java.lang.Object arg1)
        Description copied from class: MarkerLoggingAdapter
        Message template with 1 replacement argument. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

        If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

        Overrides:
        debug in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • debug

        public final void debug​(LogMarker marker,
                                java.lang.String template,
                                java.lang.Object arg1,
                                java.lang.Object arg2)
        Description copied from class: MarkerLoggingAdapter
        Message template with 2 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        debug in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • debug

        public final void debug​(LogMarker marker,
                                java.lang.String template,
                                java.lang.Object arg1,
                                java.lang.Object arg2,
                                java.lang.Object arg3)
        Description copied from class: MarkerLoggingAdapter
        Message template with 3 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        debug in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter
      • debug

        public final void debug​(LogMarker marker,
                                java.lang.String template,
                                java.lang.Object arg1,
                                java.lang.Object arg2,
                                java.lang.Object arg3,
                                java.lang.Object arg4)
        Description copied from class: MarkerLoggingAdapter
        Message template with 4 replacement arguments. The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".
        Overrides:
        debug in class MarkerLoggingAdapter
        See Also:
        LoggingAdapter