Skip to content

Commit

Permalink
remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisguida committed Apr 4, 2023
1 parent 99f1488 commit 9675463
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions plugins/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,11 +237,6 @@ where
// Read the `getmanifest` message:
match input.next().await {
Some(Ok(messages::JsonRpc::Request(id, messages::Request::Getmanifest(m)))) => {
log::info!("received getmanifest: {:?}", m.clone());
log::info!(
"responding with getmanifestresponse: {:?}",
self.handle_get_manifest(m.clone())
);
output
.lock()
.await
Expand Down
2 changes: 1 addition & 1 deletion plugins/src/messages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub(crate) enum Notification {
// Shutdown,
}

#[derive(Deserialize, Debug, Clone)]
#[derive(Deserialize, Debug)]
pub(crate) struct GetManifestCall {}

#[derive(Deserialize, Debug)]
Expand Down

0 comments on commit 9675463

Please sign in to comment.