#1931 - correcting logging config examples

This commit is contained in:
Viktor Klang 2012-04-08 01:10:19 +02:00
parent 2bb9e79b98
commit a658486d9b
2 changed files with 46 additions and 28 deletions

View file

@ -72,9 +72,11 @@ by Actors:
.. code-block:: ruby
akka {
debug {
# enable DEBUG logging of all AutoReceiveMessages (Kill, PoisonPill and the like)
autoreceive = on
actor {
debug {
# enable DEBUG logging of all AutoReceiveMessages (Kill, PoisonPill and the like)
autoreceive = on
}
}
}
@ -83,9 +85,11 @@ If you want very detailed logging of all lifecycle changes of Actors (restarts,
.. code-block:: ruby
akka {
debug {
# enable DEBUG logging of actor lifecycle changes
lifecycle = on
actor {
debug {
# enable DEBUG logging of actor lifecycle changes
lifecycle = on
}
}
}
@ -94,9 +98,11 @@ If you want very detailed logging of all events, transitions and timers of FSM A
.. code-block:: ruby
akka {
debug {
# enable DEBUG logging of all LoggingFSMs for events, transitions and timers
fsm = on
actor {
debug {
# enable DEBUG logging of all LoggingFSMs for events, transitions and timers
fsm = on
}
}
}
@ -105,9 +111,11 @@ If you want to monitor subscriptions (subscribe/unsubscribe) on the ActorSystem.
.. code-block:: ruby
akka {
debug {
# enable DEBUG logging of subscription changes on the eventStream
event-stream = on
actor {
debug {
# enable DEBUG logging of subscription changes on the eventStream
event-stream = on
}
}
}

View file

@ -76,10 +76,12 @@ by Actors that use akka.event.LoggingReceive:
.. code-block:: ruby
akka {
debug {
# enable function of LoggingReceive, which is to log any received message at
# DEBUG level
receive = on
actor {
debug {
# enable function of LoggingReceive, which is to log any received message at
# DEBUG level
receive = on
}
}
}
@ -89,9 +91,11 @@ by Actors:
.. code-block:: ruby
akka {
debug {
# enable DEBUG logging of all AutoReceiveMessages (Kill, PoisonPill and the like)
autoreceive = on
actor {
debug {
# enable DEBUG logging of all AutoReceiveMessages (Kill, PoisonPill and the like)
autoreceive = on
}
}
}
@ -100,9 +104,11 @@ If you want very detailed logging of all lifecycle changes of Actors (restarts,
.. code-block:: ruby
akka {
debug {
# enable DEBUG logging of actor lifecycle changes
lifecycle = on
actor {
debug {
# enable DEBUG logging of actor lifecycle changes
lifecycle = on
}
}
}
@ -111,9 +117,11 @@ If you want very detailed logging of all events, transitions and timers of FSM A
.. code-block:: ruby
akka {
debug {
# enable DEBUG logging of all LoggingFSMs for events, transitions and timers
fsm = on
actor {
debug {
# enable DEBUG logging of all LoggingFSMs for events, transitions and timers
fsm = on
}
}
}
@ -122,9 +130,11 @@ If you want to monitor subscriptions (subscribe/unsubscribe) on the ActorSystem.
.. code-block:: ruby
akka {
debug {
# enable DEBUG logging of subscription changes on the eventStream
event-stream = on
actor {
debug {
# enable DEBUG logging of subscription changes on the eventStream
event-stream = on
}
}
}