From 4186c7da9e39474620892086cfd5ba4898265ad3 Mon Sep 17 00:00:00 2001 From: Dave Allie Date: Wed, 3 Dec 2025 22:30:13 +1100 Subject: [PATCH] Remove debug lines --- lib/Epub/Epub.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Epub/Epub.cpp b/lib/Epub/Epub.cpp index a83d2cc..f4260e1 100644 --- a/lib/Epub/Epub.cpp +++ b/lib/Epub/Epub.cpp @@ -369,9 +369,7 @@ int Epub::getSpineIndexForTocIndex(const int tocIndex) const { int Epub::getTocIndexForSpineIndex(const int spineIndex) const { // the toc entry should have an href that matches the spine item // so we can find the toc index by looking for the href - Serial.printf("Looking for %s\n", spine[spineIndex].second.c_str()); for (int i = 0; i < toc.size(); i++) { - Serial.printf("Looking at %s\n", toc[i].href.c_str()); if (toc[i].href == spine[spineIndex].second) { return i; }