Skip to content

Commit 9147db9

Browse files
authored
reduce dtmf logs to debug (#748)
1 parent 32ea43c commit 9147db9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/sip/room.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ func (r *Room) sendDTMF(ctx context.Context, msg *livekit.SipDTMF) {
537537
// TODO: Separate goroutine?
538538
ctx, cancel := context.WithCancel(ctx)
539539
defer cancel()
540-
r.log.Infow("forwarding dtmf to sip", "digit", msg.Digit)
540+
r.log.Debugw("forwarding dtmf to sip", "digit", msg.Digit)
541541
_ = (*outDTMF).WriteDTMF(ctx, msg.Digit)
542542
}
543543

0 commit comments

Comments
 (0)