]> Untitled Git - lemmy.git/commitdiff
Adding some logging.
authorDessalines <tyhou13@gmx.com>
Sat, 3 Oct 2020 14:47:06 +0000 (09:47 -0500)
committerDessalines <tyhou13@gmx.com>
Sat, 3 Oct 2020 14:47:06 +0000 (09:47 -0500)
lemmy_apub/src/activity_queue.rs
lemmy_apub/src/community.rs
lemmy_db/src/activity.rs

index 7602fe2f7a858cae2eaf54508d579c80a6503f96..68b5c3ab0d294669fa884b7ed748fff8cd854196 100644 (file)
@@ -174,7 +174,7 @@ where
 
   let activity = activity.into_any_base()?;
   let serialised_activity = serde_json::to_string(&activity)?;
-  insert_activity(actor.user_id(), serialised_activity.clone(), true, pool).await?;
+  insert_activity(actor.user_id(), activity.clone(), true, pool).await?;
 
   // TODO: it would make sense to create a separate task for each destination server
   let message = SendActivityTask {
index c2b4571fa65fe55f117d048c2cede932eca2d56b..ad9abaaa25905ce8a411144503b40b2c49deca89 100644 (file)
@@ -1,3 +1,4 @@
+use log::debug;
 use crate::{
   activity_queue::{send_activity_single_dest, send_to_community_followers},
   check_actor_domain,
@@ -281,6 +282,10 @@ 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)
   }
 
index 18b6ef0058e9a6253cd8c329ae892d271c1ea207..6830d566d61a815ab08fc344478021b4ae7246aa 100644 (file)
@@ -63,7 +63,7 @@ where
   T: Serialize + Debug,
 {
   debug!("inserting activity for user {}: ", user_id);
-  debug!("{}", serde_json::to_string_pretty(&serde_json::to_value(&data)?)?);
+  debug!("{}", serde_json::to_string_pretty(&data)?);
   let activity_form = ActivityForm {
     user_id,
     data: serde_json::to_value(&data)?,