Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
07662a91f4
3 changed files with 6 additions and 4 deletions
|
@ -163,7 +163,7 @@ object Anilist {
|
|||
throw Exception("Rate limited after $retry seconds")
|
||||
}
|
||||
if (!json.text.startsWith("{")) {throw Exception(currContext()?.getString(R.string.anilist_down))}
|
||||
if (show) println("Response : ${json.text}")
|
||||
if (show) Logger.log("Anilist Query: ${json.text}")
|
||||
json.parsed()
|
||||
} else null
|
||||
} catch (e: Exception) {
|
||||
|
|
|
@ -23,6 +23,7 @@ import ani.dantotsu.others.MalScraper
|
|||
import ani.dantotsu.settings.saving.PrefManager
|
||||
import ani.dantotsu.settings.saving.PrefName
|
||||
import ani.dantotsu.snackString
|
||||
import ani.dantotsu.util.Logger
|
||||
import kotlinx.coroutines.async
|
||||
import kotlinx.coroutines.awaitAll
|
||||
import kotlinx.coroutines.runBlocking
|
||||
|
@ -464,7 +465,8 @@ class AnilistQueries {
|
|||
}, recommendationPlannedQueryManga: ${recommendationPlannedQuery("MANGA")}"""
|
||||
query += """}""".trimEnd(',')
|
||||
|
||||
val response = executeQuery<Query.HomePageMedia>(query)
|
||||
val response = executeQuery<Query.HomePageMedia>(query, show = true)
|
||||
Logger.log(response.toString())
|
||||
val returnMap = mutableMapOf<String, ArrayList<Media>>()
|
||||
fun current(type: String) {
|
||||
val subMap = mutableMapOf<Int, Media>()
|
||||
|
|
|
@ -94,7 +94,7 @@ object Logger {
|
|||
if (file == null) e.printStackTrace() else {
|
||||
file?.appendText("---------------------------Exception---------------------------\n")
|
||||
file?.appendText("date/time: ${Date()} | ${e.message}\n")
|
||||
file?.appendText("trace: ${e.stackTrace}\n")
|
||||
file?.appendText("trace: ${e.stackTraceToString()}\n")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -104,7 +104,7 @@ object Logger {
|
|||
if (file == null) e.printStackTrace() else {
|
||||
file?.appendText("---------------------------Exception---------------------------\n")
|
||||
file?.appendText("date/time: ${Date()} | ${e.message}\n")
|
||||
file?.appendText("trace: ${e.stackTrace}\n")
|
||||
file?.appendText("trace: ${e.stackTraceToString()}\n")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue