We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94c60be commit 69668e5Copy full SHA for 69668e5
lib/sentry/logger_backend.ex
@@ -112,7 +112,10 @@ defmodule Sentry.LoggerBackend do
112
Sentry.capture_exception(exception, [stacktrace: stacktrace] ++ opts)
113
114
{other, stacktrace} when is_list(stacktrace) ->
115
- Sentry.capture_exception(Sentry.CrashError.exception(other), [stacktrace: stacktrace] ++ opts)
+ Sentry.capture_exception(
116
+ Sentry.CrashError.exception(other),
117
+ [stacktrace: stacktrace] ++ opts
118
+ )
119
120
_ ->
121
if state.capture_log_messages do
0 commit comments