diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-15 21:51:22 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-15 21:51:22 +0200 |
| commit | 5da3f0278b3cc3a2024216117f9be67c674bcbd0 (patch) | |
| tree | 3702811b8af20cc82fc113ac0780d066293fa89c /server | |
| parent | 836bdea5497cadaa468b4d74ad5e36404a89f46c (diff) | |
| download | hurrycurry-5da3f0278b3cc3a2024216117f9be67c674bcbd0.tar hurrycurry-5da3f0278b3cc3a2024216117f9be67c674bcbd0.tar.bz2 hurrycurry-5da3f0278b3cc3a2024216117f9be67c674bcbd0.tar.zst | |
Improve replaytool error reporting
Diffstat (limited to 'server')
| -rw-r--r-- | server/replaytool/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/replaytool/src/main.rs b/server/replaytool/src/main.rs index 5238a675..7ef70087 100644 --- a/server/replaytool/src/main.rs +++ b/server/replaytool/src/main.rs @@ -89,7 +89,7 @@ async fn main() -> anyhow::Result<()> { output.clone() }; if let Err(e) = record(&out, &url).await { - warn!("recording failed: {e}"); + warn!("recording failed: {e:#}"); sleep(Duration::from_secs(1)).await; } if r#loop { |