Skip to content

Commit 29a47cb

Browse files
Wording
1 parent a7cbd39 commit 29a47cb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/rabbit.erl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -438,10 +438,10 @@ stop() ->
438438
rabbit_log:info("RabbitMQ hasn't finished starting yet. Waiting for startup to finish before stopping..."),
439439
await_startup(true)
440440
end,
441-
rabbit_log:info("Stopping RabbitMQ~n", []),
441+
rabbit_log:info("RabbitMQ is asked to stop...~n", []),
442442
Apps = ?APPS ++ rabbit_plugins:active(),
443443
stop_apps(app_utils:app_dependency_order(Apps, true)),
444-
rabbit_log:info("Stopped RabbitMQ application~n", []).
444+
rabbit_log:info("Successfully stopped RabbitMQ and its dependencies~n", []).
445445

446446
stop_and_halt() ->
447447
try
@@ -578,7 +578,7 @@ decrypt_list([Value|Tail], Algo, Acc) ->
578578

579579
stop_apps(Apps) ->
580580
rabbit_log:info(
581-
lists:flatten(["Stopping RabbitMQ applications in following order: ~n",
581+
lists:flatten(["Stopping RabbitMQ applications and their dependencies in the following order: ~n",
582582
[" ~p~n" || _ <- Apps]]),
583583
lists:reverse(Apps)),
584584
ok = app_utils:stop_applications(

0 commit comments

Comments
 (0)