summaryrefslogtreecommitdiff
path: root/include/rebar.hrl
blob: b19fdd3bb92de5e94590b744f59553e3a3259945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%% 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(standard_error, error, Str, Args)).

-define(FMT(Str, Args), lists:flatten(io_lib:format(Str, Args))).