mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
C#: Enable nullability in csharp extraction project v1
This commit is contained in:
@@ -45,7 +45,7 @@ namespace Semmle.Util.Logging
|
||||
/// <summary>
|
||||
/// Log the given text with the given severity.
|
||||
/// </summary>
|
||||
public static void Log(this ILogger logger, Severity s, string text, params object[] args)
|
||||
public static void Log(this ILogger logger, Severity s, string text, params object?[] args)
|
||||
{
|
||||
logger.Log(s, string.Format(text, args));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user