n2o_io.erl 421 B

12345678910111213141516
  1. -module(n2o_io).
  2. -author('Roman Gladkov').
  3. -export([info/3, warning/3, error/3]).
  4. info(Module, String, Args) ->
  5. io:format(format_message(Module, String), Args).
  6. warning(Module, String, Args) ->
  7. io:format(format_message(Module, String), Args).
  8. error(Module, String, Args) ->
  9. io:format(format_message(Module, String), Args).
  10. format_message(Module, String) ->
  11. wf:to_list([Module, ":", String, "\n\r"]).