mirror of
https://github.com/ACINQ/eclair.git
synced 2025-01-19 05:33:59 +01:00
Set akka.loglevel
to DEBUG
(#1235)
This allows us to only use logback.xml to control the log level. From akka docs [1]: > If you set the loglevel to a higher level than DEBUG, any DEBUG events will be filtered out already at the source and will never reach the logging backend, regardless of how the backend is configured. > You can enable DEBUG level for akka.loglevel and control the actual level in the SLF4J backend without any significant overhead, also for production. [1] https://doc.akka.io/docs/akka/current/logging.html
This commit is contained in:
parent
f5a626686f
commit
38a3f07f83
@ -20,7 +20,7 @@ akka {
|
||||
|
||||
loggers = ["akka.event.slf4j.Slf4jLogger"]
|
||||
logger-startup-timeout = 30s
|
||||
loglevel = "INFO"
|
||||
loglevel = "DEBUG" # akka doc: You can enable DEBUG level for akka.loglevel and control the actual level in the SLF4J backend without any significant overhead, also for production.
|
||||
logging-filter = "akka.event.slf4j.Slf4jLoggingFilter"
|
||||
|
||||
io {
|
||||
|
Loading…
Reference in New Issue
Block a user