Class

akka.event.Logging

StandardOutLogger

Related Doc: package Logging

Permalink

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.

Source
Logging.scala
Linear Supertypes
StdOutLogger, MinimalActorRef, LocalRef, ActorRefScope, InternalActorRef, ScalaActorRef, ActorRef, Serializable, Serializable, Comparable[ActorRef], AnyRef, Any
Type Hierarchy
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 StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StandardOutLogger()

    Permalink

Value Members

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

    Permalink

    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: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

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

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

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

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

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

    Permalink

    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
  10. def debug(event: Debug): Unit

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

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

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

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

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

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

    Permalink

    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
  17. def error(event: Error): Unit

    Permalink
    Definition Classes
    StdOutLogger
  18. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from StandardOutLogger to StringFormat[StandardOutLogger] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. def forward(message: Any)(implicit context: ActorContext): Unit

    Permalink

    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, no matter whether originally sent with tell/'!' or ask/'?'.

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

    Permalink

    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
  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  22. def getParent: InternalActorRef

    Permalink

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  26. final def isLocal: Boolean

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

    Permalink
    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  30. val path: ActorPath

    Permalink

    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
  31. def print(event: Any): Unit

    Permalink
    Definition Classes
    StdOutLogger
  32. def provider: ActorRefProvider

    Permalink

    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
  33. def restart(cause: Throwable): Unit

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

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

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

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

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

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

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

    Permalink

    Sends the specified message to this ActorRef, i.e.

    Sends the specified message to this ActorRef, i.e. fire-and-forget semantics, including the sender reference if possible.

    Pass akka.actor.ActorRef noSender or null as sender if there is nobody to reply to

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

    Permalink
    Definition Classes
    StdOutLogger
  42. val toString: String

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

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

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

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

    Permalink
    Definition Classes
    StdOutLogger
  47. def writeReplace(): AnyRef

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

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

Shadowed Implicit Value Members

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

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    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, no matter whether originally sent with tell/'!' or 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

    Permalink
    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

    Permalink

    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. final def tell(msg: Any, sender: ActorRef): Unit

    Permalink

    Sends the specified message to this ActorRef, i.e.

    Sends the specified message to this ActorRef, i.e. fire-and-forget semantics, including the sender reference if possible.

    Pass akka.actor.ActorRef noSender or null as sender if there is nobody to reply to

    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
  8. def toString(): String

    Permalink
    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 finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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 any2stringadd[StandardOutLogger]

Inherited by implicit conversion StringFormat from StandardOutLogger to StringFormat[StandardOutLogger]

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

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

Ungrouped