-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Send logs & crash reports to stash server (#339)
Because gathering logs and information about app crashes is so difficult, this PR adds the ability to gather that information and send it to the user's Stash server if the companion plugin is installed. The logs are only ever sent to the user's own stash server to help protect privacy. If the app crashes, a dialog will appear asking whether or not to send a crash report to the server. The report will be logged server-side in Log tab of Settings (eg http://192.168.1.5:9999/settings?tab=logs). This can be disabled in advanced settings (ie the dialog will never appear). PR to add the plugin to the community scripts: stashapp/CommunityScripts#381
- Loading branch information
1 parent
e45f3b1
commit ac164c5
Showing
17 changed files
with
551 additions
and
87 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
mutation RunPluginTask($plugin_id: ID!, $task_name: String!, $args_map: Map) { | ||
runPluginTask(plugin_id: $plugin_id, task_name: $task_name, args_map: $args_map) | ||
} |
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
Oops, something went wrong.