mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
4875d2312c
We have to rename ?FAIL to ?ABORT once we require at least R13B04 for building rebar. Macros with different arity were not supported by the compiler before 13B04.
16 lines
643 B
Erlang
16 lines
643 B
Erlang
%% TODO: rename FAIL to ABORT once we require at least R13B04 for
|
|
%% building rebar. Macros with different arity were not supported by the
|
|
%% compiler before 13B04.
|
|
-define(FAIL, rebar_utils:abort()).
|
|
-define(ABORT(Str, Args), rebar_utils:abort(Str, Args)).
|
|
|
|
-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))).
|
|
|
|
-define(TEST_DIR, ".test").
|