Skip to content

Commit

Permalink
fix: corects number of args in msgf
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmkowalski committed Mar 28, 2024
1 parent bf805ed commit 2d69b0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/action_contact.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ func (c *Client) AcceptContact(ctx context.Context, xPubID, paymail string) erro
c.Logger().Warn().
Str("xPubID", xPubID).
Str("paymail", paymail).
Msgf("contact status is: %s, expected: %s, error: s", contact.Status, ContactAwaitAccept, err.Error())
Msgf("contact status is: %s, expected: %s, error: %s", contact.Status, ContactAwaitAccept, err.Error())
return err
}
contact.Status = ContactNotConfirmed
Expand Down

0 comments on commit 2d69b0b

Please # to comment.