diff --git a/experimental/CHANGELOG.md b/experimental/CHANGELOG.md index 261f772d07a..721a2c5f97d 100644 --- a/experimental/CHANGELOG.md +++ b/experimental/CHANGELOG.md @@ -8,6 +8,8 @@ For notes on migrating to 2.x / 0.200.x see [the upgrade guide](doc/upgrade-to-2 ### :boom: Breaking Changes +* fix(api-logs)!: drop lingering includeTraceContext from LoggerOptions type [#6451](https://github.com/open-telemetry/opentelemetry-js/pull/6451) @trentm + ### :rocket: Features ### :bug: Bug Fixes diff --git a/experimental/packages/api-logs/src/types/LoggerOptions.ts b/experimental/packages/api-logs/src/types/LoggerOptions.ts index 1c844986f98..67129d08360 100644 --- a/experimental/packages/api-logs/src/types/LoggerOptions.ts +++ b/experimental/packages/api-logs/src/types/LoggerOptions.ts @@ -14,10 +14,4 @@ export interface LoggerOptions { * The instrumentation scope attributes to associate with emitted telemetry */ scopeAttributes?: Attributes; - - /** - * Specifies whether the Trace Context should automatically be passed on to the LogRecords emitted by the Logger. - * @default true - */ - includeTraceContext?: boolean; }