How can i use limit: :infinity in dbg
? It seems like dbg automatically trims if a list is too long, does dbg has an option to use it like IO.inspect(limit: :infinity)
?
The official docs say dbg
accepts the same options as IO.inspect
so try it?
3 Likes
i’m trying to use
dbg
as dbg(var)
forgot to try it with |> dbg(limit: :infinity)
Thanks!
1 Like