File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Foundatio.TestHarness/Queue Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -181,8 +181,8 @@ public virtual async Task CanUseQueueOptionsAsync()
181181 {
182182 ShouldListenTo = s => s . Name == "Foundatio" ,
183183 Sample = ( ref ActivityCreationOptions < ActivityContext > _ ) => ActivitySamplingResult . AllDataAndRecorded ,
184- ActivityStarted = activity => _logger . LogInformation ( "Start: " + activity . DisplayName ) ,
185- ActivityStopped = activity => _logger . LogInformation ( "Stop: " + activity . DisplayName )
184+ ActivityStarted = activity => _logger . LogInformation ( "Start: {DisplayName}" , activity . DisplayName ) ,
185+ ActivityStopped = activity => _logger . LogInformation ( "Stop: {DisplayName}" , activity . DisplayName )
186186 } ;
187187
188188 Activity . Current = new Activity ( "Parent" ) ;
You can’t perform that action at this time.
0 commit comments