Skip to content

Commit

Permalink
More logging
Browse files Browse the repository at this point in the history
  • Loading branch information
adzialocha committed Dec 8, 2024
1 parent 1f79649 commit 2e3d898
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ pub fn run() -> Result<(
})
.or_insert(vec![document_id_clone.clone()]);
};

println!("received {:?}", operation);

// Forward the payload up to the app.
to_app
.send(
Expand All @@ -179,6 +182,8 @@ pub fn run() -> Result<(
.await?;
}

println!("stream ended");

Ok(())
});

Expand Down

0 comments on commit 2e3d898

Please sign in to comment.