-
-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: Add additional primitive values as tags on SentryLogger #1246
Feat: Add additional primitive values as tags on SentryLogger #1246
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1246 +/- ##
==========================================
- Coverage 80.59% 78.03% -2.56%
==========================================
Files 212 212
Lines 6904 6912 +8
Branches 1587 1591 +4
==========================================
- Hits 5564 5394 -170
- Misses 809 994 +185
+ Partials 531 524 -7
Continue to review full report at Codecov.
|
…ps://github.com/getsentry/sentry-dotnet into feat/sentrylogger-add-additional-primitive-tags
Users can now use other types of data for generating Tags, for example:
logger.LogError("Some Application error: {intTag}", 100500);
logger.LogError("Some Application error: {guidTag}", Guid.New());
logger.LogError("Some Application error: {doubleTag}", 12.34);
Close #260.