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.
1 parent 2b5dc2c commit 362845aCopy full SHA for 362845a
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