mirror of
https://github.com/ACINQ/eclair.git
synced 2025-02-23 14:40:34 +01:00
Moved akka conf to eclair-node application.conf (#252)
Overriding configuration of dependencies must be done at the application level.
This commit is contained in:
parent
5b2fbb1bb2
commit
71f39a033b
2 changed files with 17 additions and 17 deletions
|
@ -82,20 +82,3 @@ eclair {
|
||||||
|
|
||||||
payment-handler = "local"
|
payment-handler = "local"
|
||||||
}
|
}
|
||||||
akka {
|
|
||||||
loggers = ["akka.event.slf4j.Slf4jLogger"]
|
|
||||||
loglevel = "DEBUG"
|
|
||||||
|
|
||||||
actor {
|
|
||||||
debug {
|
|
||||||
# enable DEBUG logging of all LoggingFSMs for events, transitions and timers
|
|
||||||
fsm = on
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
http {
|
|
||||||
host-connection-pool {
|
|
||||||
max-open-requests = 64
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
17
eclair-node/src/main/resources/application.conf
Normal file
17
eclair-node/src/main/resources/application.conf
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
akka {
|
||||||
|
loggers = ["akka.event.slf4j.Slf4jLogger"]
|
||||||
|
loglevel = "DEBUG"
|
||||||
|
|
||||||
|
actor {
|
||||||
|
debug {
|
||||||
|
# enable DEBUG logging of all LoggingFSMs for events, transitions and timers
|
||||||
|
fsm = on
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
host-connection-pool {
|
||||||
|
max-open-requests = 64
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue