Skip to content

Commit

Permalink
gl-plugin: Remove noisy debug statements
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Neuroth <[email protected]>
  • Loading branch information
nepet committed Jul 8, 2024
1 parent de0a9f9 commit 9af2ac6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libs/gl-plugin/src/node/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -565,14 +565,13 @@ impl Node for PluginNodeServer {
&self,
r: tonic::Request<pb::TrampolinePayRequest>,
) -> Result<tonic::Response<pb::TrampolinePayResponse>, Status> {
debug!("Got a new trampoline pay request {:?}", r);
let req = serde_json::to_value(r.into_inner()).map_err(|e| {
Status::new(
Code::Internal,
format!("error parsing request to json {}", e),
)
})?;
debug!("Got a new trampoline pay request {:?}", req);

let rpc = self.get_rpc().await;
match rpc
.call::<serde_json::Value, PayResponse>("trampolinepay", req)
Expand Down

0 comments on commit 9af2ac6

Please sign in to comment.