Skip to content

Commit

Permalink
fix: logging home page
Browse files Browse the repository at this point in the history
  • Loading branch information
rebelonion committed Mar 11, 2024
1 parent bdbbe62 commit 5536f3b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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>()
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/ani/dantotsu/util/Logger.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
}
Expand All @@ -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")
}
}
}
Expand Down

0 comments on commit 5536f3b

Please sign in to comment.