diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-01-31 10:48:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-31 10:48:28 +0000 |
commit | ba1a9b98b70e340b8dd7c748aab8998e493c9c05 (patch) | |
tree | c36baa172e2a778ce040b66ffce8c8b069fb0161 /clientapi/producers | |
parent | eb8e770e9973fb22371a0a474fee7d10a981d800 (diff) |
Tweak some logging (#2130)
* Modify some log levels
* Update gomatrixserverlib to matrix-org/gomatrixserverlib@336334f
* Update gomatrixserverlib to matrix-org/gomatrixserverlib@cde7ac8
* Demote warning about key change producer
* Add more useful roomserver logging
* Further tweaking
Diffstat (limited to 'clientapi/producers')
-rw-r--r-- | clientapi/producers/syncapi.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clientapi/producers/syncapi.go b/clientapi/producers/syncapi.go index bd6af5f1..9b1d6b1a 100644 --- a/clientapi/producers/syncapi.go +++ b/clientapi/producers/syncapi.go @@ -51,7 +51,7 @@ func (p *SyncAPIProducer) SendData(userID string, roomID string, dataType string "user_id": userID, "room_id": roomID, "data_type": dataType, - }).Infof("Producing to topic '%s'", p.Topic) + }).Tracef("Producing to topic '%s'", p.Topic) _, err = p.JetStream.PublishMsg(m) return err |