I am using latest play framework (2.8.12) I am trying to Print akka configs on application start Here is how my configs looks like
application.conf
play {
server {
# The server provider class name
provider = "play.core.server.AkkaHttpServerProvider"
akka {
loglevel = "INFO"
log-config-on-start = on
default-dispatcher {
fork-join-executor {
parallelism-min = 8
parallelism-factor = 32.0
parallelism-max = 64
task-peeking-mode = "FIFO"
}
}
}
}
}
Trying to tune thread pool settings but none of changes seems to be effected. So trying to log configs on application start.
First thing I would do is just print the provided config from one of your controllers for example.
Please note that will print full config including all
reference.conffound in your classpath.Regarding your
application.conf, I think you misplaced thedefault-dispatcherconfig. It must be inakka.actorinstead ofplay.server.akkaTo make
log-config-on-startwork, make sure that you configurelogback.xmlloggerakkato allowINFOlogs.