summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2020-03-16 12:33:05 +0300
committerMichael Klishin <michael@clojurewerkz.org>2020-03-16 12:33:05 +0300
commit7f71aecadf8cff5076e08273e7bcc79164ee89fc (patch)
tree99cf52bf50732a90cc944ef032fe72a877de87a3 /src
parent141f6bfc2ba058b5e57f93dc08a2d5a0595a3f1e (diff)
downloadrabbitmq-server-git-7f71aecadf8cff5076e08273e7bcc79164ee89fc.tar.gz
Log it when schema tables were successfully synced
Pair: @dumbbell.
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_table.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rabbit_table.erl b/src/rabbit_table.erl
index c504719e4d..b00f39ebec 100644
--- a/src/rabbit_table.erl
+++ b/src/rabbit_table.erl
@@ -114,6 +114,7 @@ wait(TableNames, Timeout, Retries) ->
end,
case {Retries, Result} of
{_, ok} ->
+ rabbit_log:info("Successfully synced tables from a peer"),
ok;
{1, {error, _} = Error} ->
throw(Error);