diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-10-12 09:11:42 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-10-12 09:11:42 -0500 |
commit | be9eb679d4eecf1d319b655e610b74f03ee15a99 (patch) | |
tree | 57e2277a88add91d4f5f96e65aa34ab16fa7f795 | |
parent | 5483aba28830d8f903930ce7d786ea94254f6f4f (diff) |
fix error message with new debug syntax
-rw-r--r-- | src/rebar3.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar3.erl b/src/rebar3.erl index 3b89c73..64eed39 100644 --- a/src/rebar3.erl +++ b/src/rebar3.erl @@ -55,7 +55,7 @@ main(Args) -> Error -> %% Nothing should percolate up from rebar_core; %% Dump this error to console - ?ERROR("Uncaught error in rebar_core. Run with -vvv to see stacktrace~n", []), + ?ERROR("Uncaught error in rebar_core. Run with DEBUG=1 to see stacktrace~n", []), ?DEBUG("Uncaught error: ~p~n", [Error]), rebar_utils:delayed_halt(1) end. |