Skip to content

Commit

Permalink
test: docker cache
Browse files Browse the repository at this point in the history
  • Loading branch information
dudantas committed Dec 3, 2024
1 parent e389ec6 commit 154606a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/network/connection/connection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ void Connection::parseProxyIdentification(const std::error_code &error) {

if (error || connectionState == CONNECTION_STATE_CLOSED) {
if (error != asio::error::operation_aborted && error != asio::error::eof && error != asio::error::connection_reset) {
g_logger().error("[Connection::parseProxyIdentification] - Read error: {}", error.message());
g_logger().debug("[Connection::parseProxyIdentification] - Read error: {}", error.message());
}
close(FORCE_CLOSE);
return;
Expand Down Expand Up @@ -239,7 +239,7 @@ void Connection::parsePacket(const std::error_code &error) {

if (error || connectionState == CONNECTION_STATE_CLOSED) {
if (error) {
g_logger().error("[Connection::parsePacket] - Read error: {}", error.message());
g_logger().debug("[Connection::parsePacket] - Read error: {}", error.message());
}
close(FORCE_CLOSE);
return;
Expand Down

0 comments on commit 154606a

Please sign in to comment.