From 493fe731d0f3a82ec40614d206f849120f0eeaaf Mon Sep 17 00:00:00 2001 From: Bat Date: Wed, 18 Jul 2018 19:02:31 +0200 Subject: [PATCH] Remove a debug message while we are at it --- plume-models/src/comments.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/plume-models/src/comments.rs b/plume-models/src/comments.rs index a76b1018..260118eb 100644 --- a/plume-models/src/comments.rs +++ b/plume-models/src/comments.rs @@ -75,7 +75,6 @@ impl Comment { let mentions = Mention::list_for_comment(conn, self.id).into_iter() .map(|m| m.get_mentioned(conn).map(|u| u.get_fqn(conn)).unwrap_or(String::new())) .collect::>(); - println!("{:?}", mentions); json["mentions"] = serde_json::to_value(mentions).unwrap(); json }