Changing logging docs to have settings turned on

This commit is contained in:
Viktor Klang 2012-01-23 14:14:39 +01:00
parent 61da9b1890
commit 49488c2670
2 changed files with 15 additions and 15 deletions

View file

@ -53,7 +53,7 @@ This config option is very good if you want to know what config settings are loa
akka {
# Log the complete configuration at INFO level when the actor system is started.
# This is useful when you are uncertain of what configuration is used.
logConfigOnStart = off
logConfigOnStart = on
}
If you want very detailed logging of all automatically received messages that are processed
@ -64,7 +64,7 @@ by Actors:
akka {
debug {
# enable DEBUG logging of all AutoReceiveMessages (Kill, PoisonPill and the like)
autoreceive = off
autoreceive = on
}
}
@ -75,7 +75,7 @@ If you want very detailed logging of all lifecycle changes of Actors (restarts,
akka {
debug {
# enable DEBUG logging of actor lifecycle changes
lifecycle = off
lifecycle = on
}
}
@ -86,7 +86,7 @@ If you want very detailed logging of all events, transitions and timers of FSM A
akka {
debug {
# enable DEBUG logging of all LoggingFSMs for events, transitions and timers
fsm = off
fsm = on
}
}
@ -97,7 +97,7 @@ If you want to monitor subscriptions (subscribe/unsubscribe) on the ActorSystem.
akka {
debug {
# enable DEBUG logging of subscription changes on the eventStream
event-stream = off
event-stream = on
}
}
@ -112,7 +112,7 @@ If you want to see all messages that are sent through remoting at DEBUG log leve
akka {
remote {
# If this is "on", Akka will log all outbound messages at DEBUG level, if off then they are not logged
log-sent-messages = off
log-sent-messages = on
}
}
@ -124,7 +124,7 @@ If you want to see all messages that are received through remoting at DEBUG log
akka {
remote {
# If this is "on", Akka will log all inbound messages at DEBUG level, if off then they are not logged
log-received-messages = off
log-received-messages = on
}
}