Skip to content

Commit

Permalink
Demote federation API logging lines
Browse files Browse the repository at this point in the history
  • Loading branch information
neilalexander committed Feb 19, 2025
1 parent 543eeee commit 786a64c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions federationapi/queue/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ func (oqs *OutgoingQueues) SendEvent(

log.WithFields(log.Fields{
"destinations": len(destmap), "event": ev.EventID(),
}).Infof("Sending event")
}).Debug("Sending event")

headeredJSON, err := json.Marshal(ev)
if err != nil {
Expand Down Expand Up @@ -291,7 +291,7 @@ func (oqs *OutgoingQueues) SendEDU(

log.WithFields(log.Fields{
"destinations": len(destmap), "edu_type": e.Type,
}).Info("Sending EDU event")
}).Debug("Sending EDU event")

ephemeralJSON, err := json.Marshal(e)
if err != nil {
Expand Down

0 comments on commit 786a64c

Please sign in to comment.