fix: remove unneeded (& problematic) logs (#473)

This commit is contained in:
Toby Bridle 2024-08-28 18:51:43 +01:00 committed by GitHub
parent ebb61d94dd
commit 6a077fa48d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -348,9 +348,6 @@ class DynamicMangaParser(extension: MangaExtension.Installed) : MangaParser() {
val res = source.getChapterList(sManga)
val reversedRes = res.reversed()
val chapterList = reversedRes.map { sChapterToMangaChapter(it) }
Logger.log("chapterList size: ${chapterList.size}")
Logger.log("chapterList: ${chapterList[1].title}")
Logger.log("chapterList: ${chapterList[1].description}")
chapterList
} catch (e: Exception) {
Logger.log("loadChapters Exception: $e")