ex_ex v0.1.0 ExEx.Logger

A beefed up Logger module. Will prepend the log with the module, function, and arity of the call-site. Also wraps messages in a function (a best practice so these get compiled out)

defmodule MyMod do

use ExEx.Logger

def my_function(my_arg) do
  ExEx.Logger.info("hello world")
end

end

Link to this section Summary

Link to this section Functions

Link to this macro debug(chardata, metadata \\ []) (macro)
Link to this macro error(chardata, metadata \\ []) (macro)
Link to this macro info(chardata, metadata \\ []) (macro)
Link to this macro log(level, msg, metadata \\ []) (macro)
Link to this macro warn(chardata, metadata \\ []) (macro)