Deployed 688f85f with MkDocs version: 1.2.3

This commit is contained in:
2021-12-21 06:59:43 +00:00
parent bba1a26cdf
commit 07e219f6b3
6 changed files with 173 additions and 66 deletions

View File

@ -249,9 +249,9 @@ webSocket.stop()
{
std::stringstream ss;
ss << "Error: " << msg->errorInfo.reason << std::endl;
ss << "#retries: " << msg->eventInfo.retries << std::endl;
ss << "Wait time(ms): " << msg->eventInfo.wait_time << std::endl;
ss << "HTTP Status: " << msg->eventInfo.http_status << std::endl;
ss << "#retries: " << msg->errorInfo.retries << std::endl;
ss << "Wait time(ms): " << msg->errorInfo.wait_time << std::endl;
ss << "HTTP Status: " << msg->errorInfo.http_status << std::endl;
std::cout << ss.str() << std::endl;
}
}