Skip to content

Commit

Permalink
change error to info log
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Gauci committed Apr 18, 2021
1 parent 0301a37 commit 27c5ff6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/base/TcpSocketHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ int TcpSocketHandler::connect(const SocketEndpoint &endpoint) {
}

if (rc != 0) {
STERROR << "Error getting address info for " << endpoint << ": " << rc
<< " (" << gai_strerror(rc) << ")";
LOG(INFO) << "Error getting address info for " << endpoint << ": " << rc
<< " (" << gai_strerror(rc) << ")";
if (results) {
freeaddrinfo(results);
}
Expand Down

0 comments on commit 27c5ff6

Please sign in to comment.