mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
Make sure reason for crash is available for debug logging
This commit is contained in:
parent
a658e970db
commit
eb84f4f443
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ compile_queue(Pids, Targets, Config, CompileFn) ->
|
|||
Pids2 = lists:delete({Pid, Mref}, Pids),
|
||||
compile_queue(Pids2, Targets, Config, CompileFn);
|
||||
|
||||
{'DOWN', Mref, _, Pid, _} ->
|
||||
{'DOWN', Mref, _, Pid, Info} ->
|
||||
?DEBUG("Worker failed: ~p\n", [Info]),
|
||||
?FAIL
|
||||
end.
|
||||
|
|
Loading…
Reference in a new issue