|
|
@ -274,6 +274,9 @@ format_mfa({M, F, A, Props}) when is_list(Props) -> |
|
|
|
Line -> |
|
|
|
[format_mfa({M, F, A}), io_lib:format(" line ~w", [Line])] |
|
|
|
end; |
|
|
|
format_mfa([{M, F, A, Props}, _]) when is_list(Props) -> |
|
|
|
%% this kind of weird stacktrace can be generated by a uncaught throw in a gen_server |
|
|
|
format_mfa({M, F, A, Props}); |
|
|
|
format_mfa(Other) -> |
|
|
|
io_lib:format("~w", [Other]). |
|
|
|
|
|
|
|