lnd: use Infof to format errors on channeldb open

This commit is contained in:
Conner Fromknecht 2020-05-27 22:42:46 -07:00 committed by Olaoluwa Osuntokun
parent 745bf0a6c9
commit 564217213c

2
lnd.go
View File

@ -239,7 +239,7 @@ func Main(lisCfg ListenerCfg) error {
)
switch {
case err == channeldb.ErrDryRunMigrationOK:
ltndLog.Info("%v, exiting", err)
ltndLog.Infof("%v, exiting", err)
return nil
case err != nil: