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
- Alphabetic
- By Inheritance
- StandardOutLogger
- StdOutLogger
- MinimalActorRef
- LocalRef
- ActorRefScope
- InternalActorRef
- ScalaActorRef
- ActorRef
- Serializable
- Serializable
- Comparable
- AnyRef
- Any
- by actorRef2Scala
- by scala2ActorRef
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
- new StandardOutLogger()
Value Members
-
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
-
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
-
def
debug(event: Debug): Unit
- Definition Classes
- StdOutLogger
-
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
-
def
error(event: Error): Unit
- Definition Classes
- StdOutLogger
-
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, no matter whether originally sent with tell/'!' or ask/'?'.
- Definition Classes
- ActorRef
-
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
-
def
getParent: InternalActorRef
Obtain parent of this ref; used by getChild for ".." paths.
Obtain parent of this ref; used by getChild for ".." paths.
- Definition Classes
- MinimalActorRef → InternalActorRef
-
final
def
hashCode(): Int
- Definition Classes
- ActorRef → AnyRef → Any
-
def
info(event: Info): Unit
- Definition Classes
- StdOutLogger
-
final
def
isLocal: Boolean
- Definition Classes
- LocalRef → ActorRefScope
-
val
path: ActorPath
- Definition Classes
- StandardOutLogger → ActorRef
-
def
print(event: Any): Unit
- Definition Classes
- StdOutLogger
-
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
-
def
restart(cause: Throwable): Unit
- Definition Classes
- MinimalActorRef → InternalActorRef
-
def
resume(causedByFailure: Throwable): Unit
- Definition Classes
- MinimalActorRef → InternalActorRef
-
def
sendSystemMessage(message: SystemMessage): Unit
- Definition Classes
- MinimalActorRef → InternalActorRef
-
def
start(): Unit
- Definition Classes
- MinimalActorRef → InternalActorRef
-
def
stop(): Unit
- Definition Classes
- MinimalActorRef → InternalActorRef
-
def
suspend(): Unit
- Definition Classes
- MinimalActorRef → InternalActorRef
-
final
def
tell(msg: Any, sender: ActorRef): Unit
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
ornull
as sender if there is nobody to reply to- Definition Classes
- ActorRef
-
def
timestamp(event: LogEvent): String
- Definition Classes
- StdOutLogger
- val toString: String
-
def
warning(event: Warning): Unit
- Definition Classes
- StdOutLogger
Shadowed Implicit Value Members
-
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
- 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
-
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
- 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
-
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
- 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
-
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, no matter whether originally sent with tell/'!' or ask/'?'.
- Implicit
- 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
-
final
def
hashCode(): Int
- Implicit
- 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
-
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
- 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
-
final
def
tell(msg: Any, sender: ActorRef): Unit
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
ornull
as sender if there is nobody to reply to- Implicit
- 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
-
def
toString(): String
- Implicit
- 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