download & view local comics

This commit is contained in:
nyne
2024-10-14 11:10:24 +08:00
parent 5a3537657a
commit c0a0dc59e1
20 changed files with 1467 additions and 158 deletions

View File

@@ -82,7 +82,10 @@ class Log {
addLog(LogLevel.warning, title, content);
}
static error(String title, String content) {
static error(String title, String content, [Object? stackTrace]) {
if(stackTrace != null) {
content += "\n${stackTrace.toString()}";
}
addLog(LogLevel.error, title, content);
}