Skip to content

Commit

Permalink
feat: remove Success Logs
Browse files Browse the repository at this point in the history
  • Loading branch information
aritosteles committed Dec 17, 2024
1 parent 9fffc02 commit cecad10
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions src/agent/communicator/src/http_client_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ namespace http_client_utils

if (!(*taskCompleted) && !socketErrorCode)
{
LogDebug("Connected successfully");
result->clear();
*taskCompleted = true;
}
Expand Down Expand Up @@ -130,7 +129,6 @@ namespace http_client_utils

if (!(*taskCompleted) && !socketErrorCode)
{
LogDebug("Async Write successful");
result->clear();
*taskCompleted = true;
}
Expand Down Expand Up @@ -161,7 +159,6 @@ namespace http_client_utils

if (!(*taskCompleted) && !socketErrorCode)
{
LogDebug("Async Read successful");
result->clear();
*taskCompleted = true;
}
Expand Down
2 changes: 0 additions & 2 deletions src/agent/communicator/src/http_socket.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ namespace http_client
{
connectionSuccess = true;
ec = errorCode;
LogDebug("Connected successfully");
}
});

Expand Down Expand Up @@ -195,7 +194,6 @@ namespace http_client
{
readSuccess = true;
ec = errorCode;
LogDebug("Read successfully");
}
else
{
Expand Down
2 changes: 0 additions & 2 deletions src/agent/communicator/src/https_socket.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ namespace http_client
{
connectionSuccess = true;
ec = errorCode;
LogDebug("Connected successfully");
}
});

Expand Down Expand Up @@ -214,7 +213,6 @@ namespace http_client
{
readSuccess = true;
ec = errorCode;
LogDebug("Read successfully");
}
else
{
Expand Down

0 comments on commit cecad10

Please sign in to comment.