From 7584c78c25935bbbf42e7d70a28b8ebce9514619 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Sun, 9 Jan 2011 21:49:27 +0000 Subject: [PATCH] Forgot to comment some debug code --- Server/RequestHandler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/RequestHandler.h b/Server/RequestHandler.h index 032b7f87f..7e44dfa8f 100644 --- a/Server/RequestHandler.h +++ b/Server/RequestHandler.h @@ -46,7 +46,7 @@ public: std::string command; std::size_t firstAmpPosition = request.find_first_of("&"); command = request.substr(1,firstAmpPosition-1); - std::cout << "[debug] looking for handler for command: " << command << std::endl; +// std::cout << "[debug] looking for handler for command: " << command << std::endl; try { if(pluginMap.Holds(command)) {