Skip to content

Commit 125ec00

Browse files
committed
fix indentation
1 parent 77e8498 commit 125ec00

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tracer/src/Datadog.Trace/Debugger/DynamicInstrumentation.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@ private void StartBackgroundProcess()
141141
CancellationToken.None,
142142
TaskContinuationOptions.OnlyOnFaulted,
143143
TaskScheduler.Default);
144-
145-
_ = _logUploader.StartFlushingAsync()
146-
.ContinueWith(
147-
t => Log.Error(t?.Exception, "Error in snapshot uploader"),
148-
CancellationToken.None,
149-
TaskContinuationOptions.OnlyOnFaulted,
150-
TaskScheduler.Default);
144+
145+
_ = _logUploader.StartFlushingAsync()
146+
.ContinueWith(
147+
t => Log.Error(t?.Exception, "Error in log uploader"),
148+
CancellationToken.None,
149+
TaskContinuationOptions.OnlyOnFaulted,
150+
TaskScheduler.Default);
151151
}
152152

153153
internal void UpdateAddedProbeInstrumentations(IReadOnlyList<ProbeDefinition> addedProbes)

0 commit comments

Comments
 (0)