From 9b208fdaee0c4b1f757bf4e6c7d39fa03943fdf4 Mon Sep 17 00:00:00 2001 From: ipknHama Date: Sat, 16 Aug 2014 12:44:43 +0900 Subject: fix compile bug (feeding std::endl to logger) --- include/routing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/routing.h') diff --git a/include/routing.h b/include/routing.h index b07c2c3..be410a7 100644 --- a/include/routing.h +++ b/include/routing.h @@ -125,7 +125,7 @@ namespace crow ); return; } - CROW_LOG_DEBUG << "ERROR cannot find handler" << std::endl; + CROW_LOG_DEBUG << "ERROR cannot find handler"; // we already found matched url; this is server error cparams.res = response(500); -- cgit v1.2.3-54-g00ecf