akka.event
Interface Logging.LogEvent

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

public static interface Logging.LogEvent
extends NoSerializationVerificationNeeded

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
 long timestamp()
          When this LogEvent was created according to System.currentTimeMillis
 

Method Detail

thread

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


timestamp

long timestamp()
When this LogEvent was created according to System.currentTimeMillis


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.