Forgot to comment some debug code

This commit is contained in:
Dennis Luxen 2011-01-09 21:49:27 +00:00
parent 1ecca0db74
commit 7584c78c25

View File

@ -46,7 +46,7 @@ public:
std::string command; std::string command;
std::size_t firstAmpPosition = request.find_first_of("&"); std::size_t firstAmpPosition = request.find_first_of("&");
command = request.substr(1,firstAmpPosition-1); 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 { try {
if(pluginMap.Holds(command)) { if(pluginMap.Holds(command)) {