main
Bel LaPointe 2025-10-03 11:37:41 -06:00
parent 4a1c3dd410
commit fee1bad5e8
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ func main() {
for i, span := range spans.Spans {
log.Printf("[%d] (%vs) %v .. %v", i, int(span[1].Sub(span[0]).Seconds()), span[0].Format(format), span[1].Format(format))
if i < len(spans.Spans)-1 {
log.Printf("[%d] (%s...)", i, int(spans.Spans[i+1][0].Sub(span[1]).Seconds()))
log.Printf("[%d] (%vs...)", i, int(spans.Spans[i+1][0].Sub(span[1]).Seconds()))
}
}