Skip to content

Commit 8807c22

Browse files
lexnvbkchrgithub-actions[bot]
authored
telemtry: Downgrade spam log to debug (#10201)
This PR downgrade the telemetry warning log to debug. - The log is causing a lot of noise in our test nets: https://grafana.teleport.parity.io/goto/fjTQ_vzDg?orgId=1 --------- Signed-off-by: Alexandru Vasile <[email protected]> Co-authored-by: Bastian Köcher <[email protected]> Co-authored-by: cmd[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent c5168ca commit 8807c22

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

prdoc/pr_10201.prdoc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
title: 'telemtry: Downgrade spam log to debug'
2+
doc:
3+
- audience: Node Dev
4+
description: |-
5+
This PR downgrade the telemetry warning log to debug.
6+
- The log is causing a lot of noise in our test nets: https://grafana.teleport.parity.io/goto/fjTQ_vzDg?orgId=1
7+
crates:
8+
- name: sc-telemetry
9+
bump: patch

substrate/client/telemetry/src/node.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ where
229229
},
230230
Poll::Pending => break NodeSocket::Dialing(s),
231231
Poll::Ready(Err(err)) => {
232-
log::warn!(target: "telemetry", "❌ Error while dialing {}: {:?}", self.addr, err);
232+
log::debug!(target: "telemetry", "❌ Error while dialing {}: {:?}", self.addr, err);
233233
socket = NodeSocket::wait_reconnect();
234234
},
235235
},

0 commit comments

Comments
 (0)