fix: remove stray trace

This commit is contained in:
Matthew Esposito 2025-02-06 09:02:55 -05:00
parent a732f18143
commit 85329c96a7

View file

@ -64,7 +64,6 @@ pub async fn community(req: Request<Body>) -> Result<Response<Body>, 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());