-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dependency Update, Replaced DrDump with Sentry
- Loading branch information
1 parent
fd9bb76
commit c069450
Showing
37 changed files
with
734 additions
and
409 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 0 additions & 85 deletions
85
ViVeTool-GUI.FeatureScanner/C_Please_Change_CrashReporter.vb.md
This file was deleted.
Oops, something went wrong.
29 changes: 29 additions & 0 deletions
29
ViVeTool-GUI.FeatureScanner/C_Please_Change_SentryHandler.vb.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Please change SentryHandler.vb yourself. | ||
|
||
I do not wish to scramble my brain trying to figure out where ViVeTool GUI is crashing, before figuring out that that Crash Report came from a Git Clone or Fork. | ||
|
||
## You can change the SendSentry() Sub of SentryHandler.vb if you want to add Custom Sentry Scopes: | ||
|
||
Custom Scopes are used to Display User-configured settings within My.Settings, you can add your own using the following Template: | ||
|
||
```vbnet | ||
SentrySdk.ConfigureScope( | ||
Sub(Scope) | ||
Scope.Contexts("My Custom Category") = New With { | ||
.MyCustomSetting = "My Custom Value", | ||
... | ||
} | ||
End Sub) | ||
``` | ||
|
||
## Change the Sentry DSN within SentryHandler.DSN.vb | ||
|
||
Pretty more or less self-explanatory. Create your own Sentry Account either on https://sentry.io or Self-hosted, create a Project and get it's DSN Link | ||
|
||
```vbnet | ||
Private Shared ReadOnly _DSN As String = "YOUR DSN HERE" | ||
``` | ||
|
||
## Other Things to Note: | ||
|
||
Refer to the [Sentry.NET Documentation](https://docs.sentry.io/platforms/dotnet/) for further Details, Functions, Methods and Properties that the Sentry SDK provides |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.