Correct fix for no logging on sbt run
This commit is contained in:
parent
d348c9b28c
commit
d175bd1d96
2 changed files with 1 additions and 21 deletions
|
|
@ -43,7 +43,7 @@ object Config extends Logging {
|
|||
"\n\tdue to: " + e.toString)
|
||||
}
|
||||
Configgy.config
|
||||
} else if (getClass.getClassLoader.getResource("/akka.conf") != null) {
|
||||
} else if (getClass.getClassLoader.getResource("akka.conf") != null) {
|
||||
try {
|
||||
Configgy.configureFromResource("akka.conf", getClass.getClassLoader)
|
||||
log.info("Config loaded from the application classpath.")
|
||||
|
|
|
|||
|
|
@ -1,20 +0,0 @@
|
|||
<log>
|
||||
level = "off"
|
||||
console = off
|
||||
</log>
|
||||
|
||||
<akka>
|
||||
version = "0.9"
|
||||
|
||||
<actor>
|
||||
timeout = 5000
|
||||
serialize-messages = off
|
||||
</actor>
|
||||
|
||||
<stm>
|
||||
service = on
|
||||
fair = on
|
||||
max-nr-of-retries = 10
|
||||
timeout = 1000
|
||||
</stm>
|
||||
</akka>
|
||||
Loading…
Add table
Add a link
Reference in a new issue