downgrade trace buffer overflow log to debug

This commit is contained in:
vyzo 2020-07-31 12:54:18 +03:00
parent 5a3055d33a
commit 2b5243c72f
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ func (t *basicTracer) Trace(evt *pb.TraceEvent) {
}
if t.lossy && len(t.buf) > TraceBufferSize {
log.Warnf("trace buffer overflow; dropping trace event")
log.Debug("trace buffer overflow; dropping trace event")
} else {
t.buf = append(t.buf, evt)
}