builtin/replicate: Remove excessive logging of data

This commit is contained in:
Perttu Ahola 2014-10-12 20:29:04 +03:00
parent bbc54b5128
commit a0ea7feea8

View File

@ -432,7 +432,7 @@ struct Module: public interface::Module, public replicate::Interface
const ss_ &name, const magic::VectorBuffer &buf) const ss_ &name, const magic::VectorBuffer &buf)
{ {
log_d(MODULE, "%s: Update size: %zu, data=%s", log_d(MODULE, "%s: Update size: %zu, data=%s",
cs(name), buf.GetBuffer().Size(), cs(dump(buf))); cs(name), buf.GetBuffer().Size());
ss_ data = buf_to_string(buf); ss_ data = buf_to_string(buf);
network::access(m_server, [&](network::Interface *inetwork){ network::access(m_server, [&](network::Interface *inetwork){
inetwork->send(peer, name, data); inetwork->send(peer, name, data);