Skip to content

Commit d234b7b

Browse files
author
Gonzalo Diaz
committed
[FIX] Logger method typo fixed.
1 parent be4fb7b commit d234b7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithm_exercises_csharp_base/src/Logger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static void error(string message, params object?[] args)
6868
#pragma warning restore CA2254 // Template should be a static expression
6969
}
7070

71-
public static void debu(string message, params object?[] args)
71+
public static void debug(string message, params object?[] args)
7272
{
7373
#pragma warning disable CA2254 // Template should be a static expression
7474
LoggerSingleton.Instance.Logger.LogDebug(message);

0 commit comments

Comments
 (0)