We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99f1488 commit 9675463Copy full SHA for 9675463
plugins/src/lib.rs
@@ -237,11 +237,6 @@ where
237
// Read the `getmanifest` message:
238
match input.next().await {
239
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
- );
245
output
246
.lock()
247
.await
plugins/src/messages.rs
@@ -57,7 +57,7 @@ pub(crate) enum Notification {
57
// Shutdown,
58
}
59
60
-#[derive(Deserialize, Debug, Clone)]
+#[derive(Deserialize, Debug)]
61
pub(crate) struct GetManifestCall {}
62
63
#[derive(Deserialize, Debug)]
0 commit comments