Fix log style.

This commit is contained in:
Naoki Kosaka 2021-09-18 18:57:38 +09:00
parent b91c39164e
commit 3436376bbf

View File

@ -39,7 +39,7 @@ func sendActivity(inboxURL string, KeyID string, body []byte, privateKey *rsa.Pr
}
defer resp.Body.Close()
logrus.Debug(inboxURL, resp.StatusCode)
logrus.Debug(inboxURL, " ", resp.StatusCode)
if resp.StatusCode/100 != 2 {
return errors.New("Post " + inboxURL + ": " + resp.Status)
}