Skip to content

Commit

Permalink
log start ts to better find location for "unable to fit and stitch se…
Browse files Browse the repository at this point in the history
…quence" in prerecorded videos (#18)
  • Loading branch information
clonejo authored Nov 22, 2023
1 parent 43ad8c9 commit 986d22a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pkg/stitch/auto.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ func (r *AutoStitcher) TryStitchAndReset() *Train {
log.Info().Msg("end of sequence, trying to stitch")
train, err := fitAndStitch(r.seq, r.c)
if err != nil {
log.Err(err).Msg("unable to fit and stitch sequence")
log.Err(err).Time("startTs", r.seq.ts[0]).Msg("unable to fit and stitch sequence")
}

return train
Expand Down

0 comments on commit 986d22a

Please sign in to comment.