From 79e326a836f97a67ef76570ad4ee68aae72ec665 Mon Sep 17 00:00:00 2001 From: Matteo Cominetti Date: Mon, 15 Aug 2022 22:39:48 +0100 Subject: [PATCH] fix(core): do not call sentry before it has initialized (#1520) --- Core/Core/Transports/SQLite.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Core/Core/Transports/SQLite.cs b/Core/Core/Transports/SQLite.cs index 4f1cf315f3..ab5494e00f 100644 --- a/Core/Core/Transports/SQLite.cs +++ b/Core/Core/Transports/SQLite.cs @@ -7,7 +7,6 @@ using System.Threading.Tasks; using System.Timers; using Speckle.Core.Api; -using Speckle.Core.Logging; namespace Speckle.Core.Transports { @@ -46,8 +45,6 @@ public class SQLiteTransport : IDisposable, ICloneable, ITransport public SQLiteTransport(string basePath = null, string applicationName = "Speckle", string scope = "Data") { - Log.AddBreadcrumb("New SqlLite Transport"); - if (basePath == null) basePath = Helpers.UserApplicationDataPath; _BasePath = basePath;