summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Watson <tim@rabbitmq.com>2012-10-05 14:50:23 +0100
committerTim Watson <tim@rabbitmq.com>2012-10-05 14:50:23 +0100
commita84fdd6359480b3b0ab80fe7e1bf3e603acc69d4 (patch)
treee6b52c78185f41666808aff0bfcf781f31464ec0
parent03a464ba0f74c146101f5ad917fdbbaa7fcaa7df (diff)
downloadrabbitmq-server-a84fdd6359480b3b0ab80fe7e1bf3e603acc69d4.tar.gz
don't try too hard to get the output errors looking nice
-rw-r--r--src/rabbit.erl7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl
index 96c1c1bf..ddaaeb25 100644
--- a/src/rabbit.erl
+++ b/src/rabbit.erl
@@ -541,13 +541,6 @@ boot_error({error, {timeout_waiting_for_tables, _}}, _Stacktrace) ->
Ns}
end,
basic_boot_error(Err ++ rabbit_nodes:diagnostics(Nodes) ++ "~n~n", []);
-
-boot_error({Tag, [H|_]=Message}, Stacktrace) when is_atom(Tag) andalso
- is_integer(H) ->
- Fmt = "Error description:~n ~s: ~s~n~n" ++
- "Log files (may contain more information):~n ~s~n ~s~n~n",
- Args = [Tag, Message, log_location(kernel), log_location(sasl)],
- boot_error(Fmt, Args, Stacktrace);
boot_error(Reason, Stacktrace) ->
Fmt = "Error description:~n ~p~n~n" ++
"Log files (may contain more information):~n ~s~n ~s~n~n",