Adding DEBUG documentation and reference to testkit

This commit is contained in:
Viktor Klang 2012-01-23 14:35:01 +01:00
parent 49488c2670
commit 690e87441f
2 changed files with 20 additions and 0 deletions

View file

@ -46,6 +46,14 @@ Auxiliary logging options
Akka has a couple of configuration options for very low level debugging, that makes most sense in Akka has a couple of configuration options for very low level debugging, that makes most sense in
for developers and not for operations. for developers and not for operations.
You almost definitely need to have logging set to DEBUG to use any of the options below:
.. code-block:: ruby
akka {
loglevel = DEBUG
}
This config option is very good if you want to know what config settings are loaded by Akka: This config option is very good if you want to know what config settings are loaded by Akka:
.. code-block:: ruby .. code-block:: ruby
@ -128,6 +136,8 @@ If you want to see all messages that are received through remoting at DEBUG log
} }
} }
Also see the logging options for TestKit: :ref:`actor.logging`.
Event Handler Event Handler
============= =============

View file

@ -43,6 +43,14 @@ Auxiliary logging options
Akka has a couple of configuration options for very low level debugging, that makes most sense in Akka has a couple of configuration options for very low level debugging, that makes most sense in
for developers and not for operations. for developers and not for operations.
You almost definitely need to have logging set to DEBUG to use any of the options below:
.. code-block:: ruby
akka {
loglevel = DEBUG
}
This config option is very good if you want to know what config settings are loaded by Akka: This config option is very good if you want to know what config settings are loaded by Akka:
.. code-block:: ruby .. code-block:: ruby
@ -138,6 +146,8 @@ If you want to see all messages that are received through remoting at DEBUG log
} }
} }
Also see the logging options for TestKit: :ref:`actor.logging`.
Translating Log Source to String and Class Translating Log Source to String and Class
------------------------------------------ ------------------------------------------