-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
Description
Currently, all properties are only stored in one level, ie. complex properties do not seem to get serialized.
NLog.Targets.ApplicationInsights/src/NLogTarget/StringDictionaryConverter.cs
Lines 111 to 121 in b2075c5
| private static string SafeValueConverter(object value) | |
| { | |
| try | |
| { | |
| return Convert.ToString(value, System.Globalization.CultureInfo.InvariantCulture); | |
| } | |
| catch | |
| { | |
| return string.Empty; | |
| } | |
| } |
Copilot