add total episode count

This commit is contained in:
Leo Robinovitch 2024-04-13 22:42:54 -07:00
parent 4cb24ae691
commit f933e46798

View file

@ -443,9 +443,10 @@ func main() {
} }
fmt.Println( fmt.Println(
fmt.Sprintf( fmt.Sprintf(
"saving episodes %d through %d: added page %d/%d", "saving episodes %d through %d of %d: added page %d/%d",
episodeBatch.minEp, episodeBatch.minEp,
episodeBatch.maxEp, episodeBatch.maxEp,
totalEpisodes,
idx+1, idx+1,
len(episodeBatch.imgLinks), len(episodeBatch.imgLinks),
), ),