Skip to content

Commit

Permalink
fix: remove stray trace
Browse files Browse the repository at this point in the history
  • Loading branch information
sigaloid committed Feb 6, 2025
1 parent a732f18 commit 85329c9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/subreddit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 85329c9

Please sign in to comment.