diff --git a/src/subreddit.rs b/src/subreddit.rs
index 0db4f77..f7fe01d 100644
--- a/src/subreddit.rs
+++ b/src/subreddit.rs
@@ -64,7 +64,6 @@ pub async fn community(req: Request
) -> Result, String> {
// Build Reddit API path
let root = req.uri().path() == "/";
let query = req.uri().query().unwrap_or_default().to_string();
- trace!("query: {}", query);
let subscribed = setting(&req, "subscriptions");
let front_page = setting(&req, "front_page");
let post_sort = req.cookie("post_sort").map_or_else(|| "hot".to_string(), |c| c.value().to_string());