1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-12-01 23:12:29 +02:00

sdk/log: Rename BatchingProcessor to BatchProcessor (#5229)

This commit is contained in:
Robert Pająk
2024-04-19 08:34:30 +02:00
committed by GitHub
parent e055c7d315
commit ed666f7713
5 changed files with 37 additions and 37 deletions

View File

@@ -20,7 +20,7 @@ type SimpleProcessor struct {
// This Processor is not recommended for production use. The synchronous
// nature of this Processor make it good for testing, debugging, or
// showing examples of other features, but it can be slow and have a high
// computation resource usage overhead. [NewBatchingProcessor] is recommended
// computation resource usage overhead. [NewBatchProcessor] is recommended
// for production use instead.
func NewSimpleProcessor(exporter Exporter, _ ...SimpleProcessorOption) *SimpleProcessor {
if exporter == nil {