1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-06-27 00:21:15 +02:00

Minor PR fixes

This commit is contained in:
Aaron Clawson
2021-12-01 16:47:46 +00:00
committed by GitHub
parent d467ac529a
commit 0f2b54b746
3 changed files with 8 additions and 6 deletions

View File

@ -238,7 +238,7 @@ func (bsp *batchSpanProcessor) exportSpans(ctx context.Context) error {
}
if l := len(bsp.batch); l > 0 {
global.Info("exporting spans", "count", len(bsp.batch))
global.Debug("exporting spans", "count", len(bsp.batch))
err := bsp.e.ExportSpans(ctx, bsp.batch)
// A new batch is always created after exporting, even if the batch failed to be exported.