Skip to content

Commit

Permalink
Fix socket selection verbose logging message (#652)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryant1410 authored Aug 15, 2024
1 parent 0aa443c commit b395da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/TcpSocketHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ int TcpSocketHandler::connect(const SocketEndpoint &endpoint) {
select(sockFd + 1, NULL, &fdset, NULL, &tv);

if (FD_ISSET(sockFd, &fdset)) {
VLOG(4) << "sockFd " << sockFd << "is selected" << sockFd;
VLOG(4) << "sockFd " << sockFd << " is selected";
int so_error;
socklen_t len = sizeof so_error;

Expand Down

0 comments on commit b395da5

Please sign in to comment.