Skip to content

Commit

Permalink
fix(core): do not call sentry before it has initialized (#1520)
Browse files Browse the repository at this point in the history
  • Loading branch information
teocomi authored Aug 15, 2022
1 parent 2df1017 commit 79e326a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Core/Core/Transports/SQLite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
using System.Threading.Tasks;
using System.Timers;
using Speckle.Core.Api;
using Speckle.Core.Logging;

namespace Speckle.Core.Transports
{
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 79e326a

Please sign in to comment.