mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-13 11:09:23 +01:00
Merge pull request #4652 from MrManPew/patch-3
lnd: show debug level at startup
This commit is contained in:
commit
652ac7fa3f
1 changed files with 2 additions and 2 deletions
4
lnd.go
4
lnd.go
|
@ -200,9 +200,9 @@ func Main(cfg *Config, lisCfg ListenerCfg, shutdownChan <-chan struct{}) error {
|
||||||
}()
|
}()
|
||||||
|
|
||||||
// Show version at startup.
|
// Show version at startup.
|
||||||
ltndLog.Infof("Version: %s commit=%s, build=%s, logging=%s",
|
ltndLog.Infof("Version: %s commit=%s, build=%s, logging=%s, debuglevel=%s",
|
||||||
build.Version(), build.Commit, build.Deployment,
|
build.Version(), build.Commit, build.Deployment,
|
||||||
build.LoggingType)
|
build.LoggingType, cfg.DebugLevel)
|
||||||
|
|
||||||
var network string
|
var network string
|
||||||
switch {
|
switch {
|
||||||
|
|
Loading…
Add table
Reference in a new issue