Remove some debug

This commit is contained in:
alesapin 2020-11-09 09:54:35 +03:00
parent a9529e8d65
commit 456b0b94c1
2 changed files with 0 additions and 5 deletions

View File

@ -37,8 +37,6 @@ static void write(bool x, WriteBuffer & out)
static void write(const String & s, WriteBuffer & out)
{
LOG_DEBUG(&Poco::Logger::get("LOG"), "S SIZE {}", s.size());
write(int32_t(s.size()), out);
out.write(s.data(), s.size());
}

View File

@ -751,12 +751,9 @@ void ZooKeeper::receiveEvent()
Error err;
read(length);
std::cerr << "RECEIVED LENGTH " << length << std::endl;
size_t count_before_event = in->count();
read(xid);
std::cerr << "RECEIVED XID " << xid << std::endl;
read(zxid);
std::cerr << "RECEIVED ZXID " << zxid << std::endl;
read(err);
RequestInfo request_info;