Skip to content

Commit

Permalink
Fix trace in DataCollectionRequestSender.cs (#15025)
Browse files Browse the repository at this point in the history
String join:

```
..., vstest.console.exe, DataCollectionRequestSender.SendBeforeTestRunStartAndGetResult: Send BeforeTestRunStart message with settingsXml <RunSettings>...</RunSettings> and sources System.Collections.Generic.List`1[System.String]: 
```
  • Loading branch information
stan-sz authored Mar 7, 2025
1 parent eeaa165 commit 77eef3b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public void SendTestHostLaunched(TestHostLaunchedPayload testHostLaunchedPayload
var isDataCollectionStarted = false;
BeforeTestRunStartResult? result = null;

EqtTrace.Verbose("DataCollectionRequestSender.SendBeforeTestRunStartAndGetResult: Send BeforeTestRunStart message with settingsXml {0} and sources {1}: ", settingsXml, sources.ToString());
EqtTrace.Verbose("DataCollectionRequestSender.SendBeforeTestRunStartAndGetResult: Send BeforeTestRunStart message with settingsXml {0} and sources {1}: ", settingsXml, string.Join(" ", sources));

var payload = new BeforeTestRunStartPayload
{
Expand Down

0 comments on commit 77eef3b

Please sign in to comment.