diff options
-rw-r--r-- | src/rebar3.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rebar3.erl b/src/rebar3.erl index 7c85f26..5ab268f 100644 --- a/src/rebar3.erl +++ b/src/rebar3.erl @@ -54,7 +54,8 @@ main(Args) -> Error -> %% Nothing should percolate up from rebar_core; %% Dump this error to console - io:format("Uncaught error in rebar_core: ~p\n", [Error]), + ?ERROR("Uncaught error in rebar_core. Run with -vvv to see stacktrace~n", []), + ?DEBUG("Uncaught error: ~p~n", [Error]), rebar_utils:delayed_halt(1) end. |