diff options
author | Julio Capote <jcapote@gmail.com> | 2023-01-05 13:35:05 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2023-01-05 13:35:05 +0000 |
commit | 5b43c429b91476e7d93d67ddcdd5eb64eea6e892 (patch) | |
tree | 86ad61981d1901cc9f504c04b5e3da91fcf4bde3 /http | |
parent | c63cd93afff0acd777b8ac5f6b3b2630c3f85d79 (diff) | |
download | communique-5b43c429b91476e7d93d67ddcdd5eb64eea6e892.tar.gz |
add logging
Diffstat (limited to 'http')
-rw-r--r-- | http/router.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http/router.go b/http/router.go index fcbd7d2..3b4b1d1 100644 --- a/http/router.go +++ b/http/router.go @@ -86,7 +86,7 @@ func (s *Router) Start(zapWriter io.Writer) { ).With( "payload", payload, - ).Debug("received item") + ).Debug("received inbox item") actorParam := c.Param("actor") err := s.registry.Inbox(actorParam, c.Request, buf.Bytes()) resource := map[string]interface{}{} |