diff --git a/progress.go b/progress.go index 6e9bc86..691096a 100644 --- a/progress.go +++ b/progress.go @@ -350,6 +350,9 @@ for i := readRows - 1; i >= 0; i-- { _, err := cw.ReadFrom(s.rows[i]) if err != nil { + if s.debugOut != nil { + fmt.Fprintf(s.debugOut, "cw.ReadFrom: %s\n", err.Error()) + } readRows-- } }