akka.event
Interface Logging.LogEvent

All Superinterfaces:
NoSerializationVerificationNeeded
All Known Implementing Classes:
Logging.Debug, Logging.Debug2, Logging.Error, Logging.Error2, Logging.Info, Logging.Info2, Logging.Warning, Logging.Warning2
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
 scala.collection.immutable.Map<java.lang.String,java.lang.Object> mdc()
          Extra values for adding to MDC
 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

Returns:
(undocumented)

timestamp

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

Returns:
(undocumented)

level

Logging.LogLevel level()
The LogLevel of this LogEvent

Returns:
(undocumented)

logSource

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

Returns:
(undocumented)

logClass

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

Returns:
(undocumented)

message

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

Returns:
(undocumented)

mdc

scala.collection.immutable.Map<java.lang.String,java.lang.Object> mdc()
Extra values for adding to MDC

Returns:
(undocumented)