diff --git a/plugins/grpc-plugin/src/main.rs b/plugins/grpc-plugin/src/main.rs index f7b3de875bbd..ecc74c90d633 100644 --- a/plugins/grpc-plugin/src/main.rs +++ b/plugins/grpc-plugin/src/main.rs @@ -128,7 +128,7 @@ async fn run_interface(bind_addr: SocketAddr, state: PluginState) -> Result<()> async fn handle_notification(plugin : Plugin, value : serde_json::Value) -> Result<()> { let notification : Result = serde_json::from_value(value); match notification { - Err(err) => { + Err(err) => { log::debug!("Failed to parse notification from lightningd {:?}", err); }, Ok(notification) => { @@ -139,4 +139,4 @@ async fn handle_notification(plugin : Plugin, value : serde_json::V } }; Ok(()) -} \ No newline at end of file +}