From 13cc71b9a2248cb3578aade310ee36c81e08789b Mon Sep 17 00:00:00 2001 From: clemahieu Date: Wed, 15 Mar 2017 00:29:45 -0500 Subject: [PATCH] Logging who gave us the frontier list. --- rai/node/bootstrap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rai/node/bootstrap.cpp b/rai/node/bootstrap.cpp index 88a790f7..14ecd6ae 100755 --- a/rai/node/bootstrap.cpp +++ b/rai/node/bootstrap.cpp @@ -849,7 +849,7 @@ void rai::bootstrap_attempt::completed_requests (std::shared_ptr lock (mutex); if (node->config.logging.network_logging ()) { - BOOST_LOG (node->log) << boost::str (boost::format ("Completed frontier request, %1% out of sync accounts") % pulls.size ()); + BOOST_LOG (node->log) << boost::str (boost::format ("Completed frontier request, %1% out of sync accounts according to %2%") % pulls.size () % client_a->endpoint); } state = rai::attempt_state::requesting_pulls; }