From: Dessalines Date: Thu, 8 Oct 2020 02:55:15 +0000 (-0500) Subject: Removing some unecessary logging. X-Git-Url: http://these/git/?a=commitdiff_plain;h=e9ce14069e95991027b9731dbd668dac229ffd72;p=lemmy.git Removing some unecessary logging. --- diff --git a/lemmy_apub/src/community.rs b/lemmy_apub/src/community.rs index b1c28d75..c2b4571f 100644 --- a/lemmy_apub/src/community.rs +++ b/lemmy_apub/src/community.rs @@ -50,7 +50,6 @@ use lemmy_utils::{ LemmyError, }; use lemmy_websocket::LemmyContext; -use log::debug; use serde::Deserialize; use url::Url; @@ -282,10 +281,6 @@ impl ActorType for Community { .unique() .collect(); - // TODO remove this logging line - let inboxes_json = serde_json::to_string_pretty(&inboxes)?; - debug!("Community follower inboxes: {}", inboxes_json); - Ok(inboxes) }