Skip to content
Merged
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
6 changes: 2 additions & 4 deletions docs/platforms/dotnet/common/configuration/heap-dumps.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ options => {
// Limit heap dumps to 3 per day with at least 2 hours between each event
Debouncer.PerDay(3, TimeSpan.FromHours(2)),
// Set the level for heap dump events to Warning
SentryLevel.Warning
);
SentryLevel.Warning);
}
```

Expand All @@ -45,8 +44,7 @@ options => {
// Limit heap dumps to 3 per day with at least 2 hours between each event
Debouncer.PerDay(3, TimeSpan.FromHours(2)),
// Set the level for heap dump events to Warning
SentryLevel.Warning
);
SentryLevel.Warning);
}
```

Expand Down