diff --git a/ddtrace/tracer/span.go b/ddtrace/tracer/span.go index 401f41ec4d..76962a9faf 100644 --- a/ddtrace/tracer/span.go +++ b/ddtrace/tracer/span.go @@ -553,6 +553,7 @@ func (s *span) finish(finishTime int64) { // todo: no need to check for shouldCompute if t.config.canComputeStats() && shouldComputeStats(s) { statSpan, shouldCalc := t.stats.newAggregableSpan(s, t.obfuscator) + log.Info("LETS COMPUTE SOME STATS: should calc %v stat span %v", shouldCalc, statSpan) if shouldCalc { // the agent supports computed stats select {