akka.event
Class Logging.DefaultLogger

java.lang.Object
  extended by akka.event.Logging.DefaultLogger
All Implemented Interfaces:
Actor, Logging.StdOutLogger
Direct Known Subclasses:
TestEventListener
Enclosing class:
Logging

public static class Logging.DefaultLogger
extends java.lang.Object
implements Actor, Logging.StdOutLogger

Actor wrapper around the standard output logger. If akka.event-handlers is not set, it defaults to just this logger.


Nested Class Summary
 
Nested classes/interfaces inherited from interface akka.actor.Actor
Actor.emptyBehavior$
 
Constructor Summary
Logging.DefaultLogger()
           
 
Method Summary
 scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receive()
          This defines the initial actor behavior, it must return a partial function with the actor logic.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface akka.actor.Actor
context, noSender, postRestart, postStop, preRestart, preStart, self, sender, supervisorStrategy, unhandled
 
Methods inherited from interface akka.event.Logging.StdOutLogger
dateFormat, debug, debugFormat, error, errorFormat, errorFormatWithoutCause, info, infoFormat, print, timestamp, warning, warningFormat
 

Constructor Detail

Logging.DefaultLogger

public Logging.DefaultLogger()
Method Detail

receive

public scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receive()
Description copied from interface: Actor
This defines the initial actor behavior, it must return a partial function with the actor logic.

Specified by:
receive in interface Actor