akka.event.Logging

StandardOutLogger

class StandardOutLogger extends InternalActorRef with MinimalActorRef with StdOutLogger

Actor-less logging implementation for synchronous logging to standard output. This logger is always attached first in order to be able to log failures during application start-up, even before normal logging is started. Its log level can be configured by setting akka.stdout-loglevel in akka.conf.

Linear Supertypes
StdOutLogger, MinimalActorRef, LocalRef, ActorRefScope, InternalActorRef, ScalaActorRef, ActorRef, Serializable, Serializable, Comparable[ActorRef], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. StandardOutLogger
  2. StdOutLogger
  3. MinimalActorRef
  4. LocalRef
  5. ActorRefScope
  6. InternalActorRef
  7. ScalaActorRef
  8. ActorRef
  9. Serializable
  10. Serializable
  11. Comparable
  12. AnyRef
  13. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StandardOutLogger()

Value Members

  1. def !(message: Any)(implicit sender: ActorRef = null): Unit

    Sends a one-way asynchronous message.

    Sends a one-way asynchronous message. E.g. fire-and-forget semantics.

    If invoked from within an actor then the actor reference is implicitly passed on as the implicit 'sender' argument.

    This actor 'sender' reference is then available in the receiving actor in the 'sender' member variable, if invoked from within an Actor. If not then no sender is available.

      actor ! message
    

    Definition Classes
    StandardOutLogger → MinimalActorRef → ScalaActorRef
  2. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  3. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  4. final def ##(): Int

    Definition Classes
    AnyRef → Any
  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. final def compareTo(other: ActorRef): Int

    Comparison only takes address into account.

    Comparison only takes address into account.

    Definition Classes
    ActorRef → Comparable
  10. val dateFormat: SimpleDateFormat

    Definition Classes
    StdOutLogger
  11. def debug(event: Debug): Unit

    Definition Classes
    StdOutLogger
  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. final def equals(that: Any): Boolean

    Definition Classes
    ActorRef → AnyRef → Any
  14. def error(event: Error): Unit

    Definition Classes
    StdOutLogger
  15. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  16. def forward(message: Any)(implicit context: ActorContext): Unit

    Forwards the message and passes the original sender actor as the sender.

    Forwards the message and passes the original sender actor as the sender.

    Works with '!' and '?'/'ask'.

    Definition Classes
    ActorRef
  17. def getChild(names: Iterator[String]): InternalActorRef

    Obtain ActorRef by possibly traversing the actor tree or looking it up at some provider-specific location.

    Obtain ActorRef by possibly traversing the actor tree or looking it up at some provider-specific location. This method shall return the end result, i.e. not only the next step in the look-up; this will typically involve recursive invocation. A path element of ".." signifies the parent, a trailing "" element must be disregarded. If the requested path does not exist, return Nobody.

    Definition Classes
    MinimalActorRef → InternalActorRef
  18. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  19. def getParent: InternalActorRef

    Obtain parent of this ref; used by getChild for ".

    Obtain parent of this ref; used by getChild for ".." paths.

    Definition Classes
    MinimalActorRef → InternalActorRef
  20. final def hashCode(): Int

    Definition Classes
    ActorRef → AnyRef → Any
  21. def info(event: Info): Unit

    Definition Classes
    StdOutLogger
  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. final def isLocal: Boolean

    Definition Classes
    LocalRefActorRefScope
  24. def isTerminated: Boolean

    Is the actor shut down? The contract is that if this method returns true, then it will never be false again.

    Is the actor shut down? The contract is that if this method returns true, then it will never be false again. But you cannot rely on that it is alive if it returns true, since this by nature is a racy method.

    Definition Classes
    MinimalActorRef → ActorRef
  25. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  28. val path: ActorPath

    Returns the path for this actor (from this actor up to the root actor).

    Returns the path for this actor (from this actor up to the root actor).

    Definition Classes
    StandardOutLoggerActorRef
  29. def print(event: Any): Unit

    Definition Classes
    StdOutLogger
  30. def provider: ActorRefProvider

    Get a reference to the actor ref provider which created this ref.

    Get a reference to the actor ref provider which created this ref.

    Definition Classes
    StandardOutLogger → InternalActorRef
  31. def restart(cause: Throwable): Unit

    Definition Classes
    MinimalActorRef → InternalActorRef
  32. def resume(): Unit

    Definition Classes
    MinimalActorRef → InternalActorRef
  33. def sendSystemMessage(message: SystemMessage): Unit

    Definition Classes
    MinimalActorRef → InternalActorRef
  34. def stop(): Unit

    Definition Classes
    MinimalActorRef → InternalActorRef
  35. def suspend(): Unit

    Definition Classes
    MinimalActorRef → InternalActorRef
  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  37. final def tell(msg: Any, sender: ActorRef): Unit

    Java API.

    Java API.

    Sends the specified message to the sender, i.e. fire-and-forget semantics, including the sender reference if possible (not supported on all senders).

    actor.tell(message, context);
    

    Definition Classes
    ActorRef
  38. final def tell(msg: Any): Unit

    Sends the specified message to the sender, i.

    Sends the specified message to the sender, i.e. fire-and-forget semantics.

    actor.tell(message);
    

    Definition Classes
    ActorRef
  39. def timestamp: String

    Definition Classes
    StdOutLogger
  40. val toString: String

    Definition Classes
    StandardOutLoggerActorRef → AnyRef → Any
  41. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  42. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  43. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  44. def warning(event: Warning): Unit

    Definition Classes
    StdOutLogger
  45. def writeReplace(): AnyRef

    Attributes
    protected
    Definition Classes
    MinimalActorRef
    Annotations
    @throws( ... )

Inherited from StdOutLogger

Inherited from MinimalActorRef

Inherited from LocalRef

Inherited from ActorRefScope

Inherited from InternalActorRef

Inherited from ScalaActorRef

Inherited from ActorRef

Inherited from Serializable

Inherited from Serializable

Inherited from Comparable[ActorRef]

Inherited from AnyRef

Inherited from Any