Skip to content

Instantly share code, notes, and snippets.

@mreigen
Created February 8, 2021 07:51
Show Gist options
  • Save mreigen/fa05168e32f22011cc9af58138014b62 to your computer and use it in GitHub Desktop.
Save mreigen/fa05168e32f22011cc9af58138014b62 to your computer and use it in GitHub Desktop.
def pp(what_to_print, debug_message \\ "") do
IO.puts("#{IO.ANSI.yellow()} START #{debug_message} ====================")
IO.puts(IO.ANSI.yellow() <> inspect(what_to_print, pretty: true, limit: :infinity))
IO.puts("#{IO.ANSI.yellow()} END #{debug_message} ====================\n\n")
what_to_print
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment