Skip to content

Commit

Permalink
fix(iroh): do not log full messages for rpc (#1453)
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire authored Sep 5, 2023
1 parent 729aa41 commit d4983c5
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions iroh/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1214,11 +1214,7 @@ fn handle_rpc_request<
let handler = handler.clone();
rt.main().spawn(async move {
use ProviderRequest::*;
info!(
"handling rpc request: {:?} {}",
msg,
std::any::type_name::<E>()
);
debug!("handling rpc request: {}", std::any::type_name::<E>());
match msg {
ListBlobs(msg) => {
chan.server_streaming(msg, handler, RpcHandler::list_blobs)
Expand Down

0 comments on commit d4983c5

Please sign in to comment.