mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
Merge pull request #18005 from ClickHouse/filimonov-log-verbosity-client-go-away
Decrease log verbosity of disconnecting clients
This commit is contained in:
commit
8d8496a653
@ -83,7 +83,7 @@ void TCPHandler::runImpl()
|
||||
|
||||
if (in->eof())
|
||||
{
|
||||
LOG_WARNING(log, "Client has not sent any data.");
|
||||
LOG_INFO(log, "Client has not sent any data.");
|
||||
return;
|
||||
}
|
||||
|
||||
@ -102,7 +102,7 @@ void TCPHandler::runImpl()
|
||||
|
||||
if (e.code() == ErrorCodes::ATTEMPT_TO_READ_AFTER_EOF)
|
||||
{
|
||||
LOG_WARNING(log, "Client has gone away.");
|
||||
LOG_INFO(log, "Client has gone away.");
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user