akka.event
Interface Logging.LogEvent

All Known Implementing Classes:
Logging.Debug, Logging.Error, Logging.Info, Logging.Warning
Enclosing class:
Logging

public static interface Logging.LogEvent

Base type of LogEvents


Method Summary
 Logging.LogLevel level()
          The LogLevel of this LogEvent
 java.lang.Class<?> logClass()
          The class of the source of this event
 java.lang.String logSource()
          The source of this event
 java.lang.Object message()
          The message, may be any object or null.
 java.lang.Thread thread()
          The thread that created this log event
 

Method Detail

thread

java.lang.Thread thread()
The thread that created this log event


level

Logging.LogLevel level()
The LogLevel of this LogEvent


logSource

java.lang.String logSource()
The source of this event


logClass

java.lang.Class<?> logClass()
The class of the source of this event


message

java.lang.Object message()
The message, may be any object or null.