mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-07-12 14:12:27 +02:00
Merge pull request #9586 from ellemouton/logConfig
config: only create a sub-log manager if one doesnt already exist
This commit is contained in:
12
config.go
12
config.go
@ -1416,9 +1416,15 @@ func ValidateConfig(cfg Config, interceptor signal.Interceptor, fileParser,
|
||||
return nil, mkErr("error validating logging config: %w", err)
|
||||
}
|
||||
|
||||
cfg.SubLogMgr = build.NewSubLoggerManager(build.NewDefaultLogHandlers(
|
||||
cfg.LogConfig, cfg.LogRotator,
|
||||
)...)
|
||||
// If a sub-log manager was not already created, then we'll create one
|
||||
// now using the default log handlers.
|
||||
if cfg.SubLogMgr == nil {
|
||||
cfg.SubLogMgr = build.NewSubLoggerManager(
|
||||
build.NewDefaultLogHandlers(
|
||||
cfg.LogConfig, cfg.LogRotator,
|
||||
)...,
|
||||
)
|
||||
}
|
||||
|
||||
// Initialize logging at the default logging level.
|
||||
SetupLoggers(cfg.SubLogMgr, interceptor)
|
||||
|
Reference in New Issue
Block a user