From 504368b2935a4acfc0f148a0ea31a3449963a7f0 Mon Sep 17 00:00:00 2001 From: DennisOSRM Date: Wed, 12 Sep 2012 15:15:21 +0200 Subject: [PATCH] Make hello world plugin more verbose to allow testing --- Plugins/HelloWorldPlugin.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Plugins/HelloWorldPlugin.h b/Plugins/HelloWorldPlugin.h index 61b3e41f9..ae0ff64b1 100644 --- a/Plugins/HelloWorldPlugin.h +++ b/Plugins/HelloWorldPlugin.h @@ -21,7 +21,6 @@ public: std::string GetVersionString() const { return std::string("0.1a"); } void HandleRequest(const RouteParameters & routeParameters, http::Reply& reply) { - std::cout << "[hello world]: runnning handler" << std::endl; reply.status = http::Reply::ok; reply.content.append("Hello World Demonstration Document

Hello, World!

"); std::stringstream content;