node: add log message when boot is aborted

This commit is contained in:
Martin Holst Swende 2020-02-13 10:34:41 +01:00
parent 5f2002bbcc
commit d354167678
No known key found for this signature in database
GPG key ID: 683B438C05A5DDF0

View file

@ -241,6 +241,7 @@ func (n *Node) Start() error {
service.Stop() service.Stop()
} }
running.Stop() running.Stop()
n.log.Error("Aborting startup", "error", err)
return err return err
} }
// Finish initializing the startup // Finish initializing the startup