Commit 2b5243c7 authored by vyzo's avatar vyzo

downgrade trace buffer overflow log to debug

parent 5a3055d3
......@@ -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)
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment