From 0c052ea30374a165a3bb6ed8570926855e76c519 Mon Sep 17 00:00:00 2001 From: Jacob Date: Thu, 28 May 2026 02:23:57 -0400 Subject: [PATCH] chore: log recording details in `/render` to try to debug why so many are falling out of range --- src/command/render.rs | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/command/render.rs b/src/command/render.rs index 0075253..11a49e4 100644 --- a/src/command/render.rs +++ b/src/command/render.rs @@ -346,7 +346,21 @@ pub async fn handle(state: State, interaction: Interaction) { if let Some(composite_sample) = composite.get_mut(origin + i) { *composite_sample += sample; } else { - tracing::error!(origin, i, total_samples, "out of range"); + tracing::error!( + ?start, + ?end, + ?year, + ?month, + ?day, + ?hour, + ?minute, + ?second, + ?microsecond, + origin, + i, + total_samples, + "out of range" + ); } } }