Skip to content

Commit

Permalink
enable debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin Kuthan committed May 23, 2015
1 parent 4747724 commit 7a4a9a1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/main/resources/application.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
akka {
event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
loglevel = "DEBUG"

log-dead-letters = 10
log-dead-letters-during-shutdown = on

# 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.
log-config-on-start = off

actor {
debug {
# enable function of LoggingReceive, which is to log any received message at
receive = off
# enable DEBUG logging of all AutoReceiveMessages (Kill, PoisonPill et.c.)
autoreceive = on
# enable DEBUG logging of actor lifecycle changes
lifecycle = on
# enable DEBUG logging of all LoggingFSMs for events, transitions and timers
fsm = off
# enable DEBUG logging of subscription changes on the eventStream
event-stream = on
}
}
}

http {
Expand Down

0 comments on commit 7a4a9a1

Please sign in to comment.