aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/socket
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-05-22 23:26:14 -0400
committerJack Lloyd <[email protected]>2018-05-22 23:26:14 -0400
commit5df1042ea95e27b58c2a4a96d036a9492e22ef67 (patch)
tree1522014db19bad936c3ab8b4517a08536d8ad329 /src/lib/utils/socket
parent4314e368d2638878d2e885e7599bd45b48c87c9a (diff)
Remove debug printf
Diffstat (limited to 'src/lib/utils/socket')
-rw-r--r--src/lib/utils/socket/socket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/socket/socket.cpp b/src/lib/utils/socket/socket.cpp
index b75b4981c..1caeb2413 100644
--- a/src/lib/utils/socket/socket.cpp
+++ b/src/lib/utils/socket/socket.cpp
@@ -83,7 +83,7 @@ class Asio_Socket final : public OS::Socket
boost::system::error_code ec = boost::asio::error::would_block;
boost::asio::async_write(m_tcp, boost::asio::buffer(buf, len),
- [&ec](boost::system::error_code e, size_t got) { printf("wrote %d\n", got); ec = e; });
+ [&ec](boost::system::error_code e, size_t got) { ec = e; });
while(ec == boost::asio::error::would_block) { m_io.run_one(); }