Skip to content

Commit 80c8d7b

Browse files
Debug logging per #15258 review feedback
1 parent a8347b2 commit 80c8d7b

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

deps/rabbitmq_exchange_federation/src/rabbit_federation_exchange_link.erl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ start_link(Args) ->
6868
init({Upstream, XName}) ->
6969
case rabbit_federation_app_state:is_shutting_down() of
7070
true ->
71+
?LOG_DEBUG("Exchange federation link: voluntarily stopping, the node (or plugin) is stopping"),
7172
ignore;
7273
false ->
7374
init_link({Upstream, XName})

deps/rabbitmq_queue_federation/src/rabbit_federation_queue_link.erl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ q(QName) ->
5656
init({Upstream, Queue}) when ?is_amqqueue(Queue) ->
5757
case rabbit_federation_app_state:is_shutting_down() of
5858
true ->
59+
?LOG_DEBUG("Queue federation link: voluntarily stopping, the node (or plugin) is stopping"),
5960
ignore;
6061
false ->
6162
init_link({Upstream, Queue})

0 commit comments

Comments
 (0)