Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2019-11-22 17:43:45 +0300
committerJaime van Kessel <nallath@gmail.com>2019-11-22 17:43:45 +0300
commit028a60318caa7811123976a6ab049c358ec5ef3c (patch)
tree1a274e6ed9b82287714933e4b3075d0dd92e5ddf /cura_app.py
parent466c90ca6c910def8430bc95f3b8034ff9cb14dc (diff)
Add extra tag if crash was during startup or not
Diffstat (limited to 'cura_app.py')
-rwxr-xr-xcura_app.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/cura_app.py b/cura_app.py
index cc9a44a5db..218a63b24d 100755
--- a/cura_app.py
+++ b/cura_app.py
@@ -23,7 +23,10 @@ parser.add_argument("--debug",
)
known_args = vars(parser.parse_known_args()[0])
-sentry_sdk.init("https://5034bf0054fb4b889f82896326e79b13@sentry.io/1821564", release = "cura%s" % ApplicationMetadata.CuraVersion, default_integrations=False )
+sentry_sdk.init("https://5034bf0054fb4b889f82896326e79b13@sentry.io/1821564",
+ release = "cura%s" % ApplicationMetadata.CuraVersion,
+ default_integrations = False,
+ max_breadcrumbs = 200)
if not known_args["debug"]:
def get_cura_dir_path():