]> Untitled Git - lemmy.git/commitdiff
Removing some unecessary logging.
authorDessalines <tyhou13@gmx.com>
Thu, 8 Oct 2020 02:55:15 +0000 (21:55 -0500)
committerDessalines <tyhou13@gmx.com>
Thu, 8 Oct 2020 02:55:15 +0000 (21:55 -0500)
lemmy_apub/src/community.rs

index b1c28d75b0a42832c531a0b0b12cab950f03b695..c2b4571fa65fe55f117d048c2cede932eca2d56b 100644 (file)
@@ -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)
   }