Skip to content

fix: DSN instead of KEY #846

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

Merged
merged 1 commit into from
Mar 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/collections/_documentation/platforms/dotnet/log4net.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This can be done, for example, via the `app.config` for console and desktop apps

```xml
<appender name="SentryAppender" type="Sentry.Log4Net.SentryAppender, Sentry.Log4Net">
<Dsn value="___PUBLIC_KEY___"/>
<Dsn value="___PUBLIC_DSN___"/>
<!--Sends the log event Identity value as the user-->
<SendIdentity value="true" />
<threshold value="INFO" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Example using `appsettings.json`:
}
},
"Sentry": {
"Dsn": "___PUBLIC_KEY___",
"Dsn": "___PUBLIC_DSN___",
"MinimumBreadcrumbLevel": "Warning",
"MinimumEventLevel": "Critical",
"MaxBreadcrumbs": 50
Expand Down