Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Use log level error to report telemetry (#8097)
Browse files Browse the repository at this point in the history
This fix the issue when running the node with -lwarn, the telemetry cannot be initialized properly.
  • Loading branch information
cecton authored Feb 10, 2021
1 parent ba290e0 commit 12562bb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion client/telemetry/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ impl TelemetrySpan {

/// Constructs a new [`TelemetrySpan`].
pub fn new() -> Self {
Self(tracing::info_span!(TELEMETRY_LOG_SPAN))
Self(tracing::error_span!(TELEMETRY_LOG_SPAN))
}

/// Return a clone of the underlying `tracing::Span` instance.
Expand Down Expand Up @@ -230,6 +230,11 @@ impl TelemetryWorker {
};

for (addr, verbosity) in endpoints {
log::trace!(
target: "telemetry",
"Initializing telemetry for: {:?}",
addr,
);
node_map
.entry(id.clone())
.or_default()
Expand Down

0 comments on commit 12562bb

Please sign in to comment.