Correct fix for no logging on sbt run

This commit is contained in:
Peter Vlugter 2010-05-28 22:08:22 +12:00
parent d348c9b28c
commit d175bd1d96
2 changed files with 1 additions and 21 deletions

View file

@ -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.")

View file

@ -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>