Fix clang-tidy issues

This commit is contained in:
badaix 2024-12-26 23:00:04 +01:00
parent d5d4cb9e63
commit 72358cd912
3 changed files with 5 additions and 5 deletions

View file

@ -135,7 +135,7 @@ void ControlServer::startAccept()
setsockopt(socket.native_handle(), SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv));
// socket->set_option(boost::asio::ip::tcp::no_delay(false));
auto port = socket.local_endpoint().port();
LOG(NOTICE, LOG_TAG) << "New connection from: " << socket.remote_endpoint().address().to_string() << ", port: " << port << endl;
LOG(NOTICE, LOG_TAG) << "New connection from: " << socket.remote_endpoint().address().to_string() << ", port: " << port << "\n";
if (port == settings_.http.ssl_port)
{