summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ClientConnection.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ClientConnection.cpp b/src/ClientConnection.cpp
index d54b4ee..4e8b434 100644
--- a/src/ClientConnection.cpp
+++ b/src/ClientConnection.cpp
@@ -19,8 +19,6 @@ HttpRequest ClientConnection::read_request()
memset(buffer, 0, BUFFER_SIZE);
while ((n = read(m_socket_fd, buffer, BUFFER_SIZE-1)) > 0) {
- std::cout << buffer;
-
if (buffer[n-1] == '\n')
break;