Skip to content

Commit 7f55760

Browse files
fix: change to debug
1 parent f4cce40 commit 7f55760

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/pkg/transport/network/udp/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ func (s *Server) push(p Packet) {
154154
defer s.ringMutex.Unlock()
155155

156156
if s.count == len(s.ring) {
157-
s.logger.Warn().Msg("Ring buffer full, overwriting oldest UDP packet")
157+
s.logger.Debug().Msg("Ring buffer full, overwriting oldest UDP packet")
158158
s.head = (s.head + 1) % len(s.ring)
159159
s.count--
160160
}

0 commit comments

Comments
 (0)