We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e71f6a + 362845a commit 7b76e71Copy full SHA for 7b76e71
tools/ScenarioTest.ResourceManager/XunitTracingInterceptor.cs
@@ -37,11 +37,11 @@ public XunitTracingInterceptor(ITestOutputHelper output)
37
38
public List<string> traceOutputArray = new List<string>();
39
40
- private void Write(string message, params object[] arguments)
+ private void Write(string message)
41
{
42
try
43
44
- traceOutputArray.Add(string.Format(message, arguments));
+ traceOutputArray.Add(message);
45
}
46
catch { }
47
0 commit comments