You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-08-10 22:31:50 +02:00
[doc] sdk/log: Do not create instances of Record (#5871)
Fixes https://github.com/open-telemetry/opentelemetry-go/issues/5823
This commit is contained in:
@@ -42,6 +42,10 @@ func putIndex(index map[string]int) {
|
||||
}
|
||||
|
||||
// Record is a log record emitted by the Logger.
|
||||
//
|
||||
// Do not create instances of Record on your own in production code.
|
||||
// You can use [go.opentelemetry.io/otel/sdk/log/logtest.RecordFactory]
|
||||
// for testing purposes.
|
||||
type Record struct {
|
||||
// Do not embed the log.Record. Attributes need to be overwrite-able and
|
||||
// deep-copying needs to be possible.
|
||||
|
Reference in New Issue
Block a user