rebar/include/rebar.hrl

17 lines
494 B
Erlang
Raw Normal View History

2009-11-25 22:23:42 +00:00
-record(global_state, { working_dir }).
-define(FAIL, throw({error, failed})).
2009-12-28 13:51:03 +00:00
-define(ABORT(Str, Args), ?ERROR(Str, Args), halt(1)).
2009-11-25 22:23:42 +00:00
-define(CONSOLE(Str, Args), io:format(Str, Args)).
-define(DEBUG(Str, Args), rebar_log:log(debug, Str, Args)).
-define(INFO(Str, Args), rebar_log:log(info, Str, Args)).
-define(WARN(Str, Args), rebar_log:log(warn, Str, Args)).
-define(ERROR(Str, Args), rebar_log:log(error, Str, Args)).
-define(FMT(Str, Args), lists:flatten(io_lib:format(Str, Args))).