We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d07a94 commit 8d5ce56Copy full SHA for 8d5ce56
src/Sentry.NLog/SentryTarget.cs
@@ -191,7 +191,7 @@ protected override void Write(LogEventInfo logEvent)
191
// Exception.Message won't be used as Breadcrumb message Avoid losing it by adding as data:
192
data = new Dictionary<string, string>
193
{
194
- { "exception_data", exception.GetType().ToString() },
+ { "exception_type", exception.GetType().ToString() },
195
{ "exception_message", exception.Message },
196
};
197
}
0 commit comments