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 defined by configuration setting akka.stdout-loglevel.

Linear Supertypes
StdOutLogger, MinimalActorRef, LocalRef, ActorRefScope, InternalActorRef, ScalaActorRef, ActorRef, Serializable, Serializable, Comparable[ActorRef], AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  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
Implicitly
  1. by actorRef2Scala
  2. by scala2ActorRef
  3. by any2stringadd
  4. by any2stringfmt
  5. by any2ArrowAssoc
  6. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StandardOutLogger()

Value Members

  1. def !(message: Any)(implicit sender: ActorRef = Actor.noSender): 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. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  6. def ->[B](y: B): (StandardOutLogger, B)

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to ArrowAssoc[StandardOutLogger] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  7. final def ==(arg0: AnyRef): Boolean

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

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

    Definition Classes
    Any
  10. def clone(): AnyRef

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

    Comparison takes path and the unique id of the actor cell into account.

    Comparison takes path and the unique id of the actor cell into account.

    Definition Classes
    ActorRef → Comparable
  12. def debug(event: Debug): Unit

    Definition Classes
    StdOutLogger
  13. def ensuring(cond: (StandardOutLogger) ⇒ Boolean, msg: ⇒ Any): StandardOutLogger

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to Ensuring[StandardOutLogger] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: (StandardOutLogger) ⇒ Boolean): StandardOutLogger

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to Ensuring[StandardOutLogger] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean, msg: ⇒ Any): StandardOutLogger

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to Ensuring[StandardOutLogger] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean): StandardOutLogger

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to Ensuring[StandardOutLogger] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. final def eq(arg0: AnyRef): Boolean

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

    Equals takes path and the unique id of the actor cell into account.

    Equals takes path and the unique id of the actor cell into account.

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

    Definition Classes
    StdOutLogger
  20. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  22. 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
  23. 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
  24. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  25. 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
  26. final def hashCode(): Int

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

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

    Definition Classes
    Any
  29. final def isLocal: Boolean

    Definition Classes
    LocalRef → ActorRefScope
  30. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  33. 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
  34. def print(event: Any): Unit

    Definition Classes
    StdOutLogger
  35. 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
  36. def restart(cause: Throwable): Unit

    Definition Classes
    MinimalActorRef → InternalActorRef
  37. def resume(causedByFailure: Throwable): Unit

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

    Definition Classes
    MinimalActorRef → InternalActorRef
  39. def start(): Unit

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

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

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

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

    Java API: Sends the specified message to the sender, i.

    Java API: Sends the specified message to the sender, i.e. fire-and-forget semantics, including the sender reference if possible (pass null if there is nobody to reply to).

    actor.tell(message, getSelf());
    

    Definition Classes
    ActorRef
  44. def timestamp(event: LogEvent): String

    Definition Classes
    StdOutLogger
  45. val toString: String

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

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

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

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

    Definition Classes
    StdOutLogger
  50. def writeReplace(): AnyRef

    Attributes
    protected
    Definition Classes
    MinimalActorRef
    Annotations
    @throws( ... )
  51. def [B](y: B): (StandardOutLogger, B)

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to ArrowAssoc[StandardOutLogger] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def !(message: Any)(implicit sender: ActorRef = Actor.noSender): 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
    

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to ScalaActorRef performed by method actorRef2Scala in akka.actor.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (standardOutLogger: ScalaActorRef).!(message)(sender)
    Definition Classes
    ScalaActorRef
  2. final def compareTo(other: ActorRef): Int

    Comparison takes path and the unique id of the actor cell into account.

    Comparison takes path and the unique id of the actor cell into account.

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to ActorRef performed by method scala2ActorRef in akka.actor.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (standardOutLogger: ActorRef).compareTo(other)
    Definition Classes
    ActorRef → Comparable
  3. final def equals(that: Any): Boolean

    Equals takes path and the unique id of the actor cell into account.

    Equals takes path and the unique id of the actor cell into account.

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to ActorRef performed by method scala2ActorRef in akka.actor.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (standardOutLogger: ActorRef).equals(that)
    Definition Classes
    ActorRef → AnyRef → Any
  4. 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'.

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to ActorRef performed by method scala2ActorRef in akka.actor.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (standardOutLogger: ActorRef).forward(message)(context)
    Definition Classes
    ActorRef
  5. final def hashCode(): Int

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to ActorRef performed by method scala2ActorRef in akka.actor.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (standardOutLogger: ActorRef).hashCode()
    Definition Classes
    ActorRef → AnyRef → Any
  6. def 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).

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to ActorRef performed by method scala2ActorRef in akka.actor.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (standardOutLogger: ActorRef).path
    Definition Classes
    ActorRef
  7. val self: Any

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (standardOutLogger: StringAdd).self
    Definition Classes
    StringAdd
  8. val self: Any

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (standardOutLogger: StringFormat).self
    Definition Classes
    StringFormat
  9. final def tell(msg: Any, sender: ActorRef): Unit

    Java API: Sends the specified message to the sender, i.

    Java API: Sends the specified message to the sender, i.e. fire-and-forget semantics, including the sender reference if possible (pass null if there is nobody to reply to).

    actor.tell(message, getSelf());
    

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to ActorRef performed by method scala2ActorRef in akka.actor.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (standardOutLogger: ActorRef).tell(msg, sender)
    Definition Classes
    ActorRef
  10. def toString(): String

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to ActorRef performed by method scala2ActorRef in akka.actor.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (standardOutLogger: ActorRef).toString()
    Definition Classes
    ActorRef → AnyRef → Any

Deprecated Value Members

  1. 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 false, since this by nature is a racy method.

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to ActorRef performed by method scala2ActorRef in akka.actor.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (standardOutLogger: ActorRef).isTerminated
    Definition Classes
    ActorRef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.2) Use context.watch(actor) and receive Terminated(actor)

  2. def isTerminated: Boolean

    Returns “true” if the actor is locally known to be terminated, “false” if alive or uncertain.

    Returns “true” if the actor is locally known to be terminated, “false” if alive or uncertain.

    Definition Classes
    MinimalActorRef → InternalActorRef → ActorRef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.2) Use context.watch(actor) and receive Terminated(actor)

  3. def x: StandardOutLogger

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to ArrowAssoc[StandardOutLogger] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (standardOutLogger: ArrowAssoc[StandardOutLogger]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  4. def x: StandardOutLogger

    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to Ensuring[StandardOutLogger] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (standardOutLogger: Ensuring[StandardOutLogger]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

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

Inherited by implicit conversion actorRef2Scala from StandardOutLogger to ScalaActorRef

Inherited by implicit conversion scala2ActorRef from StandardOutLogger to ActorRef

Inherited by implicit conversion any2stringadd from StandardOutLogger to StringAdd

Inherited by implicit conversion any2stringfmt from StandardOutLogger to StringFormat

Inherited by implicit conversion any2ArrowAssoc from StandardOutLogger to ArrowAssoc[StandardOutLogger]

Inherited by implicit conversion any2Ensuring from StandardOutLogger to Ensuring[StandardOutLogger]

Ungrouped