feat: move subscriptions to new notification method

This commit is contained in:
rebelonion 2024-03-19 19:30:12 -05:00
parent a39db5ea93
commit 808d4e6bf5
32 changed files with 491 additions and 620 deletions

View file

@ -86,7 +86,7 @@ object Logger {
fun log(message: String) {
val trace = Thread.currentThread().stackTrace[3]
loggerExecutor.execute {
if (file == null) Log.d("Internal Logger", "$message)")
if (file == null) Log.d("Internal Logger", message)
else {
val className = trace.className
val methodName = trace.methodName