diff options
author | Serge Aleynikov <saleyn@gmail.com> | 2015-12-19 00:14:17 -0500 |
---|---|---|
committer | Serge Aleynikov <saleyn@gmail.com> | 2016-02-08 19:22:52 -0500 |
commit | 7b4ceecfdbf60be0d341319f4a675f08951fe8c1 (patch) | |
tree | 8b81514471658d23db940374415a41313761f6bf | |
parent | cf03345486f5e3b09960deb861c07e2d1dcca3a1 (diff) |
Change output to use ?CONSOLE marco
-rw-r--r-- | src/rebar_prv_state.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_state.erl b/src/rebar_prv_state.erl index 0e2ca21..244e0d0 100644 --- a/src/rebar_prv_state.erl +++ b/src/rebar_prv_state.erl @@ -36,7 +36,7 @@ init(State) -> do(State) -> L = rebar_state:to_list(State), io:put_chars("State:\n"), - [io:format(" ~w: ~p\n", [K, V]) || {K,V} <- L], + [?CONSOLE(" ~w: ~p\n", [K, V]) || {K,V} <- L], {ok, State}. -spec format_error(any()) -> iolist(). |