We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e8793 commit 771cc29Copy full SHA for 771cc29
src/base/TcpSocketHandler.cpp
@@ -204,6 +204,9 @@ set<int> TcpSocketHandler::listen(const SocketEndpoint &endpoint) {
204
LOG(WARNING) << "Error binding " << p->ai_family << "/" << p->ai_socktype
205
<< "/" << p->ai_protocol << ": " << localErrno << " "
206
<< strerror(localErrno);
207
+ CLOG(INFO, "stdout") << "Error binding " << p->ai_family << "/"
208
+ << p->ai_socktype << "/" << p->ai_protocol << ": "
209
+ << localErrno << " " << strerror(localErrno) << endl;
210
stringstream oss;
211
oss << "Error binding port " << port << ": " << localErrno << " "
212
0 commit comments