Merge pull request #6096 from Kixunil/clarify-systemd-log-message

(trivial) signal: clarify the log message about systemd
This commit is contained in:
Oliver Gugger 2021-12-20 13:44:02 +01:00 committed by GitHub
commit 088970e7e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -42,6 +42,9 @@
* [Ensure that the min relay fee is always clamped by our fee
floor](https://github.com/lightningnetwork/lnd/pull/6076)
* [Clarify log message about not running within
systemd](https://github.com/lightningnetwork/lnd/pull/6096)
## RPC Server
* [ChanStatusFlags is now

View File

@ -42,7 +42,8 @@ func systemdNotifyReady() error {
if notified {
log.Info("Systemd was notified about our readiness")
} else {
log.Info("We're not running within systemd")
log.Info("We're not running within systemd or the service " +
"type is not 'notify'")
}
return nil
}