akka.contrib.jul
Interface JavaLoggingAdapter

All Superinterfaces:
LoggingAdapter

public interface JavaLoggingAdapter
extends LoggingAdapter


Method Summary
 boolean isDebugEnabled()
           
 boolean isErrorEnabled()
           
 boolean isInfoEnabled()
           
 boolean isWarningEnabled()
           
 void log(java.util.logging.Level level, java.lang.Throwable cause, java.lang.String message)
           
 java.util.logging.Logger logger()
           
 scala.Option<scala.concurrent.ExecutionContext> loggingExecutionContext()
          Override-able option for asynchronous logging
 void notifyDebug(java.lang.String message)
           
 void notifyError(java.lang.String message)
           
 void notifyError(java.lang.Throwable cause, java.lang.String message)
           
 void notifyInfo(java.lang.String message)
           
 void notifyWarning(java.lang.String message)
           
 void updateSource(java.util.logging.LogRecord record)
           
 
Methods inherited from interface akka.event.LoggingAdapter
debug, debug, debug, debug, debug, error, error, error, error, error, error, error, error, error, error, format, format1, info, info, info, info, info, isEnabled, log, log, log, log, log, mdc, notifyLog, warning, warning, warning, warning, warning
 

Method Detail

logger

java.util.logging.Logger logger()

loggingExecutionContext

scala.Option<scala.concurrent.ExecutionContext> loggingExecutionContext()
Override-able option for asynchronous logging


isErrorEnabled

boolean isErrorEnabled()
Specified by:
isErrorEnabled in interface LoggingAdapter

isWarningEnabled

boolean isWarningEnabled()
Specified by:
isWarningEnabled in interface LoggingAdapter

isInfoEnabled

boolean isInfoEnabled()
Specified by:
isInfoEnabled in interface LoggingAdapter

isDebugEnabled

boolean isDebugEnabled()
Specified by:
isDebugEnabled in interface LoggingAdapter

notifyError

void notifyError(java.lang.String message)
Specified by:
notifyError in interface LoggingAdapter

notifyError

void notifyError(java.lang.Throwable cause,
                 java.lang.String message)
Specified by:
notifyError in interface LoggingAdapter

notifyWarning

void notifyWarning(java.lang.String message)
Specified by:
notifyWarning in interface LoggingAdapter

notifyInfo

void notifyInfo(java.lang.String message)
Specified by:
notifyInfo in interface LoggingAdapter

notifyDebug

void notifyDebug(java.lang.String message)
Specified by:
notifyDebug in interface LoggingAdapter

log

void log(java.util.logging.Level level,
         java.lang.Throwable cause,
         java.lang.String message)

updateSource

void updateSource(java.util.logging.LogRecord record)