Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
Merge 1732964 into fb897fa
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew0 committed Mar 5, 2021
2 parents fb897fa + 1732964 commit a6c24ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/global_tracer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ let _globalTracer: Tracer | null = null;
// case where
class GlobalTracerDelegate extends Tracer {

startSpan(): any {
_startSpan(): any {
const tracer = _globalTracer || noopTracer;
return tracer.startSpan.apply(tracer, arguments);
}

inject(): any {
_inject(): any {
const tracer = _globalTracer || noopTracer;
return tracer.inject.apply(tracer, arguments);
}

extract(): any {
_extract(): any {
const tracer = _globalTracer || noopTracer;
return tracer.extract.apply(tracer, arguments);
}
Expand Down

0 comments on commit a6c24ed

Please sign in to comment.