aboutsummaryrefslogtreecommitdiffstats
path: root/include/routing.h
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2014-08-16 12:44:43 +0900
committeripknHama <ipknhama@gmail.com>2014-08-16 12:44:43 +0900
commit9b208fdaee0c4b1f757bf4e6c7d39fa03943fdf4 (patch)
tree0d7880e425cbcac2c347f88a89cd278e2bee84f2 /include/routing.h
parentef51b97d8b5647a2a474b382e8772711cdfd8327 (diff)
downloadcrow-9b208fdaee0c4b1f757bf4e6c7d39fa03943fdf4.tar.gz
crow-9b208fdaee0c4b1f757bf4e6c7d39fa03943fdf4.zip
fix compile bug (feeding std::endl to logger)
Diffstat (limited to 'include/routing.h')
-rw-r--r--include/routing.h2
1 files changed, 1 insertions, 1 deletions
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);