Skip to content

Commit 4041dd8

Browse files
committed
rabbit_control_main: Indicate node name in the "successfully shut down" line
Signed-off-by: Gerhard Lazu <[email protected]> [#142699191]
1 parent de7ef86 commit 4041dd8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/rabbit_control_main.erl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,9 @@ shutdown_node_and_wait_pid_to_stop(Node, Pid, Inform) ->
277277
ok ->
278278
Inform("Waiting for PID ~s to terminate", [Pid]),
279279
wait_for_process_death(Pid),
280-
Inform("RabbitMQ node running at PID ~s successfully shut down", [Pid]);
280+
Inform(
281+
"RabbitMQ node ~p running at PID ~s successfully shut down",
282+
[Node, Pid]);
281283
_ -> ok
282284
end,
283285
Res.

0 commit comments

Comments
 (0)