Skip to content

Commit

Permalink
downgrade trace buffer overflow log to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
vyzo committed Jul 31, 2020
1 parent 5a3055d commit 2b5243c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracer.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 2b5243c

Please sign in to comment.