From a1b5c503b2be499898db5963cde2dc9536701691 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Fri, 13 Jan 2012 08:41:21 -0600 Subject: [PATCH] removes debugging statement --- src/roles/client.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/roles/client.hpp b/src/roles/client.hpp index d320c64355..4f15ac62f6 100644 --- a/src/roles/client.hpp +++ b/src/roles/client.hpp @@ -260,9 +260,7 @@ client::connect(const std::string& u) { // TODO: what kind of exception does client throw? throw ""; } - - std::cout << "host: " << location->get_host() << std::endl; - + tcp::resolver::query query(location->get_host(),location->get_port_str()); tcp::resolver::iterator iterator = m_resolver.resolve(query);