Packages

Rexbug is a thin Elixir wrapper for :redbug production-friendly Erlang tracing debugger. It tries to preserve :redbug's simple and intuitive interface while making it more convenient to use by Elixir developers.

Current section

Files

Jump to
rexbug lib rexbug printing utils.ex
Raw

lib/rexbug/printing/utils.ex

defmodule Rexbug.Printing.Utils do
@moduledoc false
@printing_opts [limit: -1]
def printing_inspect(term) do
inspect(term, @printing_opts)
end
end