Compare commits

...

1 Commits

Author SHA1 Message Date
izzy lyseggen fbfa5e2b6e Revert "fix(metrics): log ex as debug for jupyter notebook (#204)"
This reverts commit 506aaf68ca.
2022-08-16 10:40:18 +01:00
+1 -1
View File
@@ -79,7 +79,7 @@ def track(action: str, account: "Account" = None, custom_props: dict = None):
METRICS_TRACKER.queue.put_nowait(event_params)
except Exception as ex:
# wrapping this whole thing in a try except as we never want a failure here to annoy users!
LOG.debug(f"Error queueing metrics request: {str(ex)}")
LOG.error(f"Error queueing metrics request: {str(ex)}")
def initialise_tracker(account: "Account" = None):