mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-11 16:00:47 -07:00
Ensure that stored log lines are sent to sentry if they haven't already been logged
CURA-8760
This commit is contained in:
parent
e6830f0241
commit
3bfea5b970
3 changed files with 14 additions and 2 deletions
|
|
@ -12,10 +12,12 @@ import json
|
|||
import locale
|
||||
from typing import cast, Any
|
||||
|
||||
import sentry_sdk
|
||||
|
||||
try:
|
||||
from sentry_sdk.hub import Hub
|
||||
from sentry_sdk.utils import event_from_exception
|
||||
from sentry_sdk import configure_scope
|
||||
from sentry_sdk import configure_scope, add_breadcrumb
|
||||
with_sentry_sdk = True
|
||||
except ImportError:
|
||||
with_sentry_sdk = False
|
||||
|
|
@ -424,6 +426,13 @@ class CrashHandler:
|
|||
if with_sentry_sdk:
|
||||
try:
|
||||
hub = Hub.current
|
||||
if not Logger.getLoggers():
|
||||
# No loggers have been loaded yet, so we don't have any breadcrumbs :(
|
||||
# So add them manually so we at least have some info...
|
||||
add_breadcrumb(level = "info", message = "SentryLogging was not initialised yet")
|
||||
for log_type, line in Logger.getUnloggedLines():
|
||||
add_breadcrumb(message=line)
|
||||
|
||||
event, hint = event_from_exception((self.exception_type, self.value, self.traceback))
|
||||
hub.capture_event(event, hint=hint)
|
||||
hub.flush()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue