aboutsummaryrefslogtreecommitdiffstats
path: root/routing.h
diff options
context:
space:
mode:
Diffstat (limited to 'routing.h')
-rw-r--r--routing.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/routing.h b/routing.h
index e69a52b..a338d4a 100644
--- a/routing.h
+++ b/routing.h
@@ -584,9 +584,9 @@ public:
if (rule_index >= rules_.size())
throw std::runtime_error("Trie internal structure corrupted!");
-#ifdef CROW_ENABLE_LOGGING
- std::cerr << req.url << ' ' << ((TaggedRule<>*)rules_[rule_index].get())->rule_ << std::endl;
-#endif
+
+ CROW_LOG_INFO << req.url << ' ' << ((TaggedRule<>*)rules_[rule_index].get())->rule_;
+
return rules_[rule_index]->handle(req, found.second);
}