Skip to content

Commit

Permalink
Fix exception when printing null values to log. (#1031)
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiamurialdo authored May 27, 2024
1 parent e41c62a commit 7e691f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/src/dotnetframework/GxClasses/Helpers/GXLogging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ public static void Info(IGXLogger logger, string msg, params string[] list)
if (logger != null) {
if (logger.IsInfoEnabled)
{
logger.LogInfo(msg.ToString(), list);
logger.LogInfo(msg, list);
}
}
}
Expand Down

0 comments on commit 7e691f1

Please sign in to comment.