a guide for moving around into an elixir project
config/
├── config.exs
├── dev.exs
├── prod.exs
└── test.exs
require Logger
Logger.debug "This is a debug line."
inspect(a)
i some_variable
i is defined as a protocol, it's implementation was useful
Logger.debug non_struct_variable
Struct variables will produce the following error protocol String.Chars not implemented for, avoid that by using
Logger.debug inspect(struct_variable)
require IEx
IEx.pry
A useful Debug guide for elixir: Blog article
iex -S mix phoenix.server