Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Sentry.Unity.Native/SentryNative.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static void Configure(SentryUnityOptions options, ISentryUnityInfo sentry
}
catch (Exception e)
{
Logger?.LogError("Sentry native initialization failed - native crashes are not captured.", e);
Logger?.LogError(e, "Sentry native initialization failed - native crashes are not captured.");
return;
}

Expand Down Expand Up @@ -111,7 +111,7 @@ private static void ReinstallBackend()
}
catch (EntryPointNotFoundException e)
{
Logger?.LogError("Native dependency not found. Did you delete sentry.dll or move files around?", e);
Logger?.LogError(e, "Native dependency not found. Did you delete sentry.dll or move files around?");
}
}
}
Loading