Skip to content

Commit 9ef75d5

Browse files
committed
refactor: use err instead of warn on key loading failure
1 parent 3918a42 commit 9ef75d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agent/services/lazer_exporter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ mod lazer_exporter {
269269
let publish_keypair = match keypair::read_keypair_file(&config.publish_keypair_path) {
270270
Ok(k) => k,
271271
Err(e) => {
272-
tracing::warn!(
272+
tracing::error!(
273273
error = ?e,
274274
publish_keypair_path = config.publish_keypair_path.display().to_string(),
275275
"Reading publish keypair returned an error. ",

0 commit comments

Comments
 (0)