Log number of pending requests when Session is closed.

This commit is contained in:
levlam 2021-10-22 18:36:35 +03:00
parent b25df7a808
commit 03c6d53951

View File

@ -500,9 +500,11 @@ void Session::on_closed(Status status) {
raw_connection->close();
if (status.is_error()) {
LOG(WARNING) << "Session closed: " << status << " " << current_info_->connection->get_name();
LOG(WARNING) << "Session with " << sent_queries_.size() << " pending requests was closed: " << status << " "
<< current_info_->connection->get_name();
} else {
LOG(INFO) << "Session closed: " << status << " " << current_info_->connection->get_name();
LOG(INFO) << "Session with " << sent_queries_.size() << " pending requests was closed: " << status << " "
<< current_info_->connection->get_name();
}
if (status.is_error() && status.code() == -404) {