summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rabbit_control_main.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rabbit_control_main.erl b/src/rabbit_control_main.erl
index 9cad46cb2c..e18bc8d1f6 100644
--- a/src/rabbit_control_main.erl
+++ b/src/rabbit_control_main.erl
@@ -277,7 +277,9 @@ shutdown_node_and_wait_pid_to_stop(Node, Pid, Inform) ->
ok ->
Inform("Waiting for PID ~s to terminate", [Pid]),
wait_for_process_death(Pid),
- Inform("RabbitMQ node running at PID ~s successfully shut down", [Pid]);
+ Inform(
+ "RabbitMQ node ~p running at PID ~s successfully shut down",
+ [Node, Pid]);
_ -> ok
end,
Res.