1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

debug logs

This commit is contained in:
Serguey Zefirov
2025-05-16 12:08:21 +03:00
parent a0b1214fb8
commit e7c261e5a2

View File

@@ -343,6 +343,8 @@ void WEClients::Listen(boost::shared_ptr<MessageQueueClient> client, uint32_t co
{ {
SBS sbs; SBS sbs;
idblog("conn index " << connIndex << ", ip addr " << client->addr2String());
try try
{ {
while (Busy()) while (Busy())
@@ -350,6 +352,7 @@ void WEClients::Listen(boost::shared_ptr<MessageQueueClient> client, uint32_t co
// TODO: This call blocks so setting Busy() in another thread doesn't work here... // TODO: This call blocks so setting Busy() in another thread doesn't work here...
sbs = client->read(); sbs = client->read();
idblog("received packet. conn index " << connIndex << ", ip addr " << client->addr2String() << ", length " << sbs->length());
if (sbs->length() != 0) if (sbs->length() != 0)
{ {
// cout << "adding data to connIndex " << endl; // cout << "adding data to connIndex " << endl;