Skip to content
Closed
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
2 changes: 1 addition & 1 deletion lib/sentry/event.ex
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ defmodule Sentry.Event do
def args_from_stacktrace([{_m, _f, a, _} | _]) when is_list(a) do
Enum.with_index(a)
|> Enum.into(%{}, fn {arg, index} ->
{"arg#{index}", inspect(arg)}
{"arg#{index}", inspect(arg, limit: :infinity, pretty: true, structs: false, width: 0)}
end)
end

Expand Down