Fixed akka-docs/java/logging.rst debug configuration
This commit is contained in:
parent
6072099f71
commit
c6d2fd7e6d
1 changed files with 20 additions and 12 deletions
|
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue