diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2016-08-31 11:44:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-31 11:44:18 -0400 |
commit | 8efcd3b92b9328942d3f50c53cbb95d28bd3a6fd (patch) | |
tree | ee9624428a1cb6dd96137b27075f4636810eaff4 /src | |
parent | c0b5f7f921bed20c65f64b25e3ea2e59095bc05e (diff) | |
parent | d4b76391475ab5ddda80f7799bda3ee1745e8244 (diff) |
Merge pull request #1318 from tuncer/conventional-stacktrace
Print stacktrace in a more conventional way
Diffstat (limited to 'src')
-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 d3ea15f..c665f20 100644 --- a/src/rebar3.erl +++ b/src/rebar3.erl @@ -292,7 +292,7 @@ handle_error(Error) -> case erlang:get_stacktrace() of [] -> ok; Trace -> - ?DEBUG("Stack trace to the error location: ~p", [Trace]) + ?DEBUG("Stack trace to the error location:~n~p", [Trace]) end, ?INFO("When submitting a bug report, please include the output of `rebar3 report \"your command\"`", []), erlang:halt(1). |