diff --git a/app/src/main/java/io/legado/app/service/DownloadService.kt b/app/src/main/java/io/legado/app/service/DownloadService.kt index 86785fefd..8f43248db 100644 --- a/app/src/main/java/io/legado/app/service/DownloadService.kt +++ b/app/src/main/java/io/legado/app/service/DownloadService.kt @@ -151,7 +151,6 @@ class DownloadService : BaseService() { private fun download() { downloadingCount += 1 - Download.addLog("downloadingCount++") tasks.add(Coroutine.async(this, context = searchPool) { if (!isActive) return@async val bookChapter: BookChapter? = synchronized(this@DownloadService) { @@ -228,8 +227,6 @@ class DownloadService : BaseService() { private fun postDownloading(hasChapter: Boolean) { downloadingCount -= 1 - Download.addLog("downloadingCount--") - Download.addLog("downloadingCount $downloadingCount") if (hasChapter) { download() } else {