downgrade trace buffer overflow log to debug
This commit is contained in:
parent
5a3055d33a
commit
2b5243c72f
|
@ -56,7 +56,7 @@ func (t *basicTracer) Trace(evt *pb.TraceEvent) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if t.lossy && len(t.buf) > TraceBufferSize {
|
if t.lossy && len(t.buf) > TraceBufferSize {
|
||||||
log.Warnf("trace buffer overflow; dropping trace event")
|
log.Debug("trace buffer overflow; dropping trace event")
|
||||||
} else {
|
} else {
|
||||||
t.buf = append(t.buf, evt)
|
t.buf = append(t.buf, evt)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue