Skip to content

Commit 7e691f1

Browse files
Fix exception when printing null values to log. (#1031)
1 parent e41c62a commit 7e691f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/dotnetframework/GxClasses/Helpers/GXLogging.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ public static void Info(IGXLogger logger, string msg, params string[] list)
799799
if (logger != null) {
800800
if (logger.IsInfoEnabled)
801801
{
802-
logger.LogInfo(msg.ToString(), list);
802+
logger.LogInfo(msg, list);
803803
}
804804
}
805805
}

0 commit comments

Comments
 (0)