Skip to content

Commit 9675463

Browse files
committed
remove debug logging
1 parent 99f1488 commit 9675463

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

plugins/src/lib.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -237,11 +237,6 @@ where
237237
// Read the `getmanifest` message:
238238
match input.next().await {
239239
Some(Ok(messages::JsonRpc::Request(id, messages::Request::Getmanifest(m)))) => {
240-
log::info!("received getmanifest: {:?}", m.clone());
241-
log::info!(
242-
"responding with getmanifestresponse: {:?}",
243-
self.handle_get_manifest(m.clone())
244-
);
245240
output
246241
.lock()
247242
.await

plugins/src/messages.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ pub(crate) enum Notification {
5757
// Shutdown,
5858
}
5959

60-
#[derive(Deserialize, Debug, Clone)]
60+
#[derive(Deserialize, Debug)]
6161
pub(crate) struct GetManifestCall {}
6262

6363
#[derive(Deserialize, Debug)]

0 commit comments

Comments
 (0)