diff options
author | Julio Capote <jcapote@gmail.com> | 2023-01-05 04:06:54 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2023-01-05 04:06:54 +0000 |
commit | 8d340a2fbe713f685dd307a5572c8545bed7bf2d (patch) | |
tree | 7fbd8fe05bada2d458d05ae4aff2129870346f08 /registry/registry.go | |
parent | a072a01daa776c53c2cf4ad1017430b772741d47 (diff) | |
download | communique-8d340a2fbe713f685dd307a5572c8545bed7bf2d.tar.gz |
log actor and inbox
Diffstat (limited to 'registry/registry.go')
-rw-r--r-- | registry/registry.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/registry/registry.go b/registry/registry.go index 4978645..2280938 100644 --- a/registry/registry.go +++ b/registry/registry.go @@ -268,7 +268,7 @@ func (r *Registry) deliverAcceptToInbox(url, actorUrl *url.URL, follow vocab.Act // If r were a http.ResponseWriter, call SignResponse instead. err = signer.SignRequest(privKey, actorUrl.String(), request, jsonData) - r.log.With("type", "delivery").With("payload", payload).Debugf("sending accept") + r.log.With("type", "delivery").With("inbox", url.String()).With("actor", actorUrl.String()).Debugf("sending accept") client := &http.Client{} response, err := client.Do(request) if err != nil { |