summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJean-Sébastien Pédron <jean-sebastien@rabbitmq.com>2017-04-03 12:16:27 +0200
committerJean-Sébastien Pédron <jean-sebastien@rabbitmq.com>2017-04-03 12:17:43 +0200
commit4041dd828eea10ed69ff76260dc41ebf42ddd7c3 (patch)
treefe95937f4e5f2045c030ee35ccddb7bfca30dfc0 /src
parentde7ef86119761bd151e02f13ca0ec37310c67073 (diff)
downloadrabbitmq-server-git-4041dd828eea10ed69ff76260dc41ebf42ddd7c3.tar.gz
rabbit_control_main: Indicate node name in the "successfully shut down" line
Signed-off-by: Gerhard Lazu <gerhard@rabbitmq.com> [#142699191]
Diffstat (limited to 'src')
-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.