summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTristan Sloughter <tristan.sloughter@gmail.com>2014-06-14 11:19:43 -0500
committerTristan Sloughter <tristan.sloughter@gmail.com>2014-06-14 11:19:43 -0500
commit07e2232847baa634b7d09bdb87dafda6c6bcc4a4 (patch)
tree1b65b82e1989c105ec284d7599e634b2105eecf6 /src
parent37cf470ae9a07cdd2e0769f3af9a8b89fcde8db0 (diff)
parentbf631718935269ab5424c38a47423f97b508ad35 (diff)
Merge pull request #281 from tuncer/rebar-h-internal
Move include/rebar.hrl to src/rebar.hrl
Diffstat (limited to 'src')
-rw-r--r--src/rebar.hrl14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/rebar.hrl b/src/rebar.hrl
new file mode 100644
index 0000000..b19fdd3
--- /dev/null
+++ b/src/rebar.hrl
@@ -0,0 +1,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))).