Skip to content

Commit 771cc29

Browse files
committed
review
1 parent c4e8793 commit 771cc29

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/base/TcpSocketHandler.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,9 @@ set<int> TcpSocketHandler::listen(const SocketEndpoint &endpoint) {
204204
LOG(WARNING) << "Error binding " << p->ai_family << "/" << p->ai_socktype
205205
<< "/" << p->ai_protocol << ": " << localErrno << " "
206206
<< strerror(localErrno);
207+
CLOG(INFO, "stdout") << "Error binding " << p->ai_family << "/"
208+
<< p->ai_socktype << "/" << p->ai_protocol << ": "
209+
<< localErrno << " " << strerror(localErrno) << endl;
207210
stringstream oss;
208211
oss << "Error binding port " << port << ": " << localErrno << " "
209212
<< strerror(localErrno);

0 commit comments

Comments
 (0)