chore(rust): correctly format values in errors

This commit is contained in:
alyssa 2025-05-17 15:05:37 +00:00
parent 347add8998
commit 7737850afb
15 changed files with 54 additions and 62 deletions

View file

@ -129,7 +129,7 @@ async fn real_main() -> anyhow::Result<()> {
}
}
Err(error) => {
error!(error = ?error, "failed to request event target");
error!(?error, "failed to request event target");
}
}
}