chore: log recording details in /render to try to debug why so many are falling out of range

This commit is contained in:
2026-05-28 02:23:57 -04:00
parent 31d53c1e58
commit 0c052ea303

View File

@@ -346,7 +346,21 @@ pub async fn handle(state: State, interaction: Interaction) {
if let Some(composite_sample) = composite.get_mut(origin + i) { if let Some(composite_sample) = composite.get_mut(origin + i) {
*composite_sample += sample; *composite_sample += sample;
} else { } 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"
);
} }
} }
} }