Commit 37807cea authored by octal's avatar octal

Endpoint: removed console output

parent e1ad4463
...@@ -69,8 +69,6 @@ private: ...@@ -69,8 +69,6 @@ private:
if (listener.bind()) { if (listener.bind()) {
const auto& addr = listener.address(); const auto& addr = listener.address();
std::cout << "Now listening on " << "http://" + addr.host() << ":"
<< addr.port() << std::endl;
CALL_MEMBER_FN(listener, method)(); CALL_MEMBER_FN(listener, method)();
} }
#undef CALL_MEMBER_FN #undef CALL_MEMBER_FN
......
...@@ -40,7 +40,6 @@ namespace { ...@@ -40,7 +40,6 @@ namespace {
} }
void handle_sigint(int) { void handle_sigint(int) {
std::cout << "Received C-c, closing listen fd!" << std::endl;
closeListener(); closeListener();
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment