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

Commit

Permalink
Change log level in PaymentListener
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekn committed Aug 23, 2017
1 parent 1b8b88d commit 2fd786d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ func (pl *PaymentListener) process(payment horizon.PaymentResponse) error {
complianceRequestURL := pl.config.Compliance + "/receive"
complianceRequestBody := url.Values{"memo": {string(payment.Memo.Value)}}

pl.log.WithFields(logrus.Fields{"url": complianceRequestURL, "body": complianceRequestBody}).Error("Sending request to compliance server")
pl.log.WithFields(logrus.Fields{"url": complianceRequestURL, "body": complianceRequestBody}).Info("Sending request to compliance server")
resp, err := pl.postForm(complianceRequestURL, complianceRequestBody)
if err != nil {
return errors.Wrap(err, "Error sending request to compliance server")
Expand Down

0 comments on commit 2fd786d

Please sign in to comment.