Preventing IO truncation with Inspect
When inspecting in Elixir, if a variable is too large or verbose, its contents will be truncated in the console.
To prevent this, we can pass limit: :infinity
in the options:
IO.inspect(massive_thing, limit: :infinity)