Skip to content

Commit 2b8e23b

Browse files
authored
fix: DSN instead of KEY (#846)
1 parent 6cb3c75 commit 2b8e23b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/collections/_documentation/platforms/dotnet/log4net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This can be done, for example, via the `app.config` for console and desktop apps
3131

3232
```xml
3333
<appender name="SentryAppender" type="Sentry.Log4Net.SentryAppender, Sentry.Log4Net">
34-
<Dsn value="___PUBLIC_KEY___"/>
34+
<Dsn value="___PUBLIC_DSN___"/>
3535
<!--Sends the log event Identity value as the user-->
3636
<SendIdentity value="true" />
3737
<threshold value="INFO" />

src/collections/_documentation/platforms/dotnet/microsoft-extensions-logging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Example using `appsettings.json`:
8787
}
8888
},
8989
"Sentry": {
90-
"Dsn": "___PUBLIC_KEY___",
90+
"Dsn": "___PUBLIC_DSN___",
9191
"MinimumBreadcrumbLevel": "Warning",
9292
"MinimumEventLevel": "Critical",
9393
"MaxBreadcrumbs": 50

0 commit comments

Comments
 (0)