Skip to content
This repository was archived by the owner on Sep 2, 2024. It is now read-only.

Commit 118c687

Browse files
committed
fix: incorrect log message
1 parent 9528d80 commit 118c687

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

service/stop.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import (
1111
// see svc.appCancelFn and how svc.StartNostr works
1212
func (svc *service) StopLNClient() error {
1313
if svc.lnClient != nil {
14-
logger.Logger.Info("Shutting down LDK client")
14+
logger.Logger.Info("Shutting down LN client")
1515
err := svc.lnClient.Shutdown()
1616
if err != nil {
17-
logger.Logger.WithError(err).Error("Failed to stop LN backend")
17+
logger.Logger.WithError(err).Error("Failed to stop LN client")
1818
svc.eventPublisher.Publish(&events.Event{
1919
Event: "nwc_node_stop_failed",
2020
Properties: map[string]interface{}{

0 commit comments

Comments
 (0)