Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Commit

Permalink
refactor: remove unecessary space in TracingHook.cs
Browse files Browse the repository at this point in the history
Release-As: 1.0.0
  • Loading branch information
cwaldren-ld committed Apr 24, 2024
1 parent 0725773 commit 2728bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/telemetry/src/TracingHook.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public override SeriesData BeforeEvaluation(EvaluationSeriesContext context, Ser
var parentContext = Activity.Current?.Context ?? new ActivityContext();

// This is an internal activity because LaunchDarkly SDK usage is an internal operation of an application.
var activity = Source.StartActivity( context.Method, ActivityKind.Internal, parentContext, attrs);
var activity = Source.StartActivity(context.Method, ActivityKind.Internal, parentContext, attrs);
return new SeriesDataBuilder(data).Set(ActivityFieldKey, activity).Build();
}

Expand Down

0 comments on commit 2728bb4

Please sign in to comment.