mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
14 lines
438 B
Erlang
14 lines
438 B
Erlang
|
|
-record(global_state, { working_dir }).
|
|
|
|
-define(FAIL, throw({error, failed})).
|
|
|
|
-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))).
|
|
|