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

Commit

Permalink
fix: incorrect log message
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Jun 19, 2024
1 parent 9528d80 commit 118c687
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/stop.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import (
// see svc.appCancelFn and how svc.StartNostr works
func (svc *service) StopLNClient() error {
if svc.lnClient != nil {
logger.Logger.Info("Shutting down LDK client")
logger.Logger.Info("Shutting down LN client")
err := svc.lnClient.Shutdown()
if err != nil {
logger.Logger.WithError(err).Error("Failed to stop LN backend")
logger.Logger.WithError(err).Error("Failed to stop LN client")
svc.eventPublisher.Publish(&events.Event{
Event: "nwc_node_stop_failed",
Properties: map[string]interface{}{
Expand Down

0 comments on commit 118c687

Please sign in to comment.