Skip to content

Commit

Permalink
Add IT
Browse files Browse the repository at this point in the history
  • Loading branch information
zsolt-kolbay-sonarsource committed Mar 6, 2024
1 parent eae7dbc commit e9c4704
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
using System;
using Microsoft.Extensions.Logging;

namespace IntentionalFindings
{
public class S6673
{
private void Log(ILogger logger, int arg, int anotherArg) =>
logger.LogInformation("Arg: {Arg} {AnotherArg}", anotherArg, arg); // Noncompliant (S6673) {{Template placeholders should be in the right order: placeholder 'Arg' does not match with argument 'anotherArg'.}}
}
}

0 comments on commit e9c4704

Please sign in to comment.