From 526ed96751ab7c83959e51ecf594f004341a7ae8 Mon Sep 17 00:00:00 2001 From: Billy Laws Date: Tue, 11 Jan 2022 18:27:48 +0000 Subject: [PATCH] Remove left over debug messages --- src/hook/hook_impl.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/hook/hook_impl.cpp b/src/hook/hook_impl.cpp index 906803b..78bb88f 100644 --- a/src/hook/hook_impl.cpp +++ b/src/hook/hook_impl.cpp @@ -16,7 +16,6 @@ const HookImplParams *hook_params; //!< Bunch of info needed to load/patch the d __attribute__((visibility("default"))) void init_hook_param(const void *param) { hook_params = reinterpret_cast(param); - LOGI("SET %p", param); } __attribute__((visibility("default"))) void *hook_android_dlopen_ext(const char *filename, int flags, const android_dlextinfo *extinfo) { @@ -108,7 +107,7 @@ __attribute__((visibility("default"))) FILE *hook_fopen(const char *filename, co LOGI("hook_fopen: passthrough: %s", filename); return fopen(filename, mode); } - LOGI("LET %p", hook_params); + auto replacement{hook_params->fileRedirectDir + filename}; LOGI("hook_fopen: %s -> %s", filename, replacement.c_str());