summaryrefslogtreecommitdiff
path: root/src
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
commit75688f41ec73904c5f408219380222b7f6de2690 (patch)
treea1c4b6f36263aca691449c12d64ea130a676802d /src
parent56332947000072fcfa785a4d52384b687d5df05e (diff)
downloadrabbitmq-server-git-75688f41ec73904c5f408219380222b7f6de2690.tar.gz
tweak logging
Diffstat (limited to 'src')
-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 10a74cc9c8..508d46e966 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.