We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63e1731 commit 8afac25Copy full SHA for 8afac25
csharp/extractor/Semmle.Util/LoggerUtils.cs
@@ -29,9 +29,9 @@ public override void WriteLine(string? value)
29
}
30
31
32
- public override void WriteLine(string? value, object?[] args)
+ public override void WriteLine(string? format, params object?[] args)
33
{
34
- WriteLine(value is null ? value : String.Format(value, args));
+ WriteLine(format is null ? format : String.Format(format, args));
35
36
37
private readonly object mutex = new object();
0 commit comments