Skip to content

Commit

Permalink
formatting error
Browse files Browse the repository at this point in the history
  • Loading branch information
jdutchak committed Aug 1, 2024
1 parent e29339c commit a9ed152
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/workers/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ func (a *Worker) HandleWork(ctx actor.Context, m *messages.Work, node *masa.Orac
}

if isLocalHost {
logrus.Errorf("[-] Local node: Error processing request: %s", err)
logrus.Errorf("[-] Local node: Error processing request: %s", err.Error())
} else {
logrus.Errorf("[-] Remote node %s: Error processing request: %s", m.Sender, err)
logrus.Errorf("[-] Remote node %s: Error processing request: %s", m.Sender, err.Error())
}

chanResponse := ChanResponse{
Expand Down

0 comments on commit a9ed152

Please sign in to comment.