From f989c1ff6b6ea6e2ccb8cb079f1cee28ed978c38 Mon Sep 17 00:00:00 2001 From: fankesyooni Date: Thu, 5 Jan 2023 16:31:33 +0800 Subject: [PATCH] Fix change loggerE to yLoggerE function in AppParasitics --- .../yukihookapi/hook/xposed/parasitic/AppParasitics.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/yukihookapi/src/api/kotlin/com/highcapable/yukihookapi/hook/xposed/parasitic/AppParasitics.kt b/yukihookapi/src/api/kotlin/com/highcapable/yukihookapi/hook/xposed/parasitic/AppParasitics.kt index 87f36d95..50268393 100644 --- a/yukihookapi/src/api/kotlin/com/highcapable/yukihookapi/hook/xposed/parasitic/AppParasitics.kt +++ b/yukihookapi/src/api/kotlin/com/highcapable/yukihookapi/hook/xposed/parasitic/AppParasitics.kt @@ -43,7 +43,6 @@ import android.os.Handler import androidx.annotation.RequiresApi import com.highcapable.yukihookapi.YukiHookAPI import com.highcapable.yukihookapi.hook.factory.* -import com.highcapable.yukihookapi.hook.log.loggerE import com.highcapable.yukihookapi.hook.log.yLoggerE import com.highcapable.yukihookapi.hook.log.yLoggerW import com.highcapable.yukihookapi.hook.param.type.HookEntryType @@ -177,7 +176,7 @@ internal object AppParasitics { */ fun YukiHookCallback.Param.throwToAppOrLogger(throwable: Throwable) { if (AppLifecycleCallback.isOnFailureThrowToApp) this.throwable = throwable - else loggerE(msg = "An exception occurred during AppLifecycle event", e = throwable) + else yLoggerE(msg = "An exception occurred during AppLifecycle event", e = throwable) } /** Hook [Application] 装载方法 */ runCatching {