summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2013-01-04 16:10:42 +0000
committerMatthias Radestock <matthias@rabbitmq.com>2013-01-04 16:10:42 +0000
commit0af18258f54c8d7a57d64e005ee2fda9bce97b8f (patch)
treea1c4b6f36263aca691449c12d64ea130a676802d
parentf6f0d2fe572ae7697d91139396d634864cecdf04 (diff)
downloadrabbitmq-server-bug24407.tar.gz
tweak loggingbug24407
-rw-r--r--src/rabbit_mirror_queue_sync.erl3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rabbit_mirror_queue_sync.erl b/src/rabbit_mirror_queue_sync.erl
index 10a74cc9..508d46e9 100644
--- a/src/rabbit_mirror_queue_sync.erl
+++ b/src/rabbit_mirror_queue_sync.erl
@@ -143,8 +143,7 @@ syncer(Ref, Log, MPid, SPids) ->
end] of
[] -> Log("all slaves already synced", []);
SPids1 -> MPid ! {ready, self()},
- Log("~p to sync", [[rabbit_misc:pid_to_string(SPid) ||
- SPid <- SPids1]]),
+ Log("mirrors ~p to sync", [[node(SPid) || SPid <- SPids1]]),
syncer_loop(Ref, MPid, SPids1)
end.