Packages
ex_debug_toolbar
0.1.5
A debug web toolbar for Phoenix projects to display all sorts of information about request
Current section
Files
Jump to
Current section
Files
lib/ex_debug_toolbar/toolbar/macros.ex
defmodule ExDebugToolbar.Toolbar.Macros do
@enabled Application.get_env(:ex_debug_toolbar, :enable, false)
defmacro if_enabled(do: block) do
if @enabled do
quote do: unquote(block)
end
end
end