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;