aboutsummaryrefslogtreecommitdiffstats
path: root/routing.h
diff options
context:
space:
mode:
Diffstat (limited to 'routing.h')
-rw-r--r--routing.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/routing.h b/routing.h
index d3601a2..9adf604 100644
--- a/routing.h
+++ b/routing.h
@@ -586,8 +586,7 @@ public:
if (rule_index >= rules_.size())
throw std::runtime_error("Trie internal structure corrupted!");
#ifdef FLASK_ENABLE_LOGGING
- std::cerr << req.url << std::endl;
- std::cerr << rules_[rule_index]->rule_ << std::endl;
+ std::cerr << req.url << ' ' << rules_[rule_index]->rule_ << std::endl;
#endif
return rules_[rule_index]->handle(req, found.second);
}