Skip to content

Commit

Permalink
Lower log level of log in the RPC callpath
Browse files Browse the repository at this point in the history
  • Loading branch information
tikue committed Aug 12, 2022
1 parent e3eac1b commit 453ba1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tarpc/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl<Req, Resp> Channel<Req, Resp> {
) -> Result<Resp, RpcError> {
let span = Span::current();
ctx.trace_context = trace::Context::try_from(&span).unwrap_or_else(|_| {
tracing::warn!(
tracing::trace!(
"OpenTelemetry subscriber not installed; making unsampled child context."
);
ctx.trace_context.new_child()
Expand Down

1 comment on commit 453ba1c

@tikue
Copy link
Collaborator Author

@tikue tikue commented on 453ba1c Aug 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Closes #373

Please sign in to comment.