aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-01-06 03:23:20 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-01-09 21:37:04 +0300
commit5db146ef751507efd4f9556c9a0ab3bb5e88f7c5 (patch)
tree4814f25c7101588a7dd7433fac4f797972295f95 /web
parentde29ab0fc899955304fc65ae688f69b6ed805bc9 (diff)
Make use of operator<<(ostream, exception)
Diffstat (limited to 'web')
-rw-r--r--web/apache/service.txx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/apache/service.txx b/web/apache/service.txx
index 6630fd0..b707f8d 100644
--- a/web/apache/service.txx
+++ b/web/apache/service.txx
@@ -171,7 +171,7 @@ namespace web
{
rq.content (
HTTP_INTERNAL_SERVER_ERROR, "text/plain;charset=utf-8")
- << e.what ();
+ << e;
return rq.flush ();
}