Fixed akka-docs/java/logging.rst debug configuration

This commit is contained in:
Tymon Tobolski 2012-01-28 18:17:20 +01:00
parent 6072099f71
commit c6d2fd7e6d

View file

@ -70,9 +70,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
}
}
}
@ -81,9 +83,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
}
}
}
@ -92,9 +96,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
}
}
}
@ -103,9 +109,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
}
}
}