Skip to content

Commit 8d5ce56

Browse files
author
Josh DeGraw
committed
Fixed name of data for exception type
1 parent 5d07a94 commit 8d5ce56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Sentry.NLog/SentryTarget.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ protected override void Write(LogEventInfo logEvent)
191191
// Exception.Message won't be used as Breadcrumb message Avoid losing it by adding as data:
192192
data = new Dictionary<string, string>
193193
{
194-
{ "exception_data", exception.GetType().ToString() },
194+
{ "exception_type", exception.GetType().ToString() },
195195
{ "exception_message", exception.Message },
196196
};
197197
}

0 commit comments

Comments
 (0)