Skip to content

Commit

Permalink
fix(opentelemetry-core): confusing log extract of composite propagator
Browse files Browse the repository at this point in the history
  • Loading branch information
rv2673 committed Sep 25, 2024
1 parent 9de3151 commit ee513c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/opentelemetry-core/src/propagation/composite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class CompositePropagator implements TextMapPropagator {
return propagator.extract(ctx, carrier, getter);
} catch (err) {
diag.warn(
`Failed to inject with ${propagator.constructor.name}. Err: ${err.message}`
`Failed to extract with ${propagator.constructor.name}. Err: ${err.message}`
);
}
return ctx;
Expand Down

0 comments on commit ee513c6

Please sign in to comment.