One pipe less
[aquarium] / src / test / resources / akka.conf
1 akka {
2   version = "2.0.2"
3
4   event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
5
6   # Log level used by the configured loggers (see "event-handlers") as soon
7   # as they have been started; before that, see "stdout-loglevel"
8   # Options: ERROR, WARNING, INFO, DEBUG
9   loglevel = "INFO"
10
11   # Log level for the very basic logger activated during AkkaApplication startup
12   # Options: ERROR, WARNING, INFO, DEBUG
13   stdout-loglevel = "WARNING"
14
15   # Log the complete configuration at INFO level when the actor system is started.
16   # This is useful when you are uncertain of what configuration is used.
17   log-config-on-start = off
18
19   # Toggles whether the threads created by this ActorSystem should be daemons or not
20   daemonic = on
21
22   actor {
23     default-dispatcher {
24       # Throughput defines the number of messages that are processed in a batch
25       # before the thread is returned to the pool. Set to 1 for as fair as possible.
26       throughput = 1
27     }
28   }
29 }