=doc #15001 doc logging unhandled messages at debug

This commit is contained in:
Johan Andrén 2015-09-08 14:34:20 +02:00
parent 49558dc415
commit e8864fc6da
2 changed files with 26 additions and 0 deletions

View file

@ -123,6 +123,19 @@ If you want very detailed logging of all lifecycle changes of Actors (restarts,
}
}
If you want unhandled messages logged at DEBUG:
.. code-block:: ruby
akka {
actor {
debug {
# enable DEBUG logging of unhandled messages
unhandled = on
}
}
}
If you want very detailed logging of all events, transitions and timers of FSM Actors that extend LoggingFSM:
.. code-block:: ruby