From 05ef5246f0955379da48c0a8e0f941afb90cdca1 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 17 May 2020 20:49:40 +0200 Subject: [PATCH] Improve logging --- source/utils/function_patcher_.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/utils/function_patcher_.cpp b/source/utils/function_patcher_.cpp index c2ec62d..7dbedb4 100644 --- a/source/utils/function_patcher_.cpp +++ b/source/utils/function_patcher_.cpp @@ -77,7 +77,7 @@ void PatchInvidualMethodHooks(hooks_magic_t method_hooks[], int32_t hook_informa WHBLogWritef("The function %s is a dynamic function. Please fix that <3", method_hooks[i].functionName); method_hooks[i].functionType = DYNAMIC_FUNCTION; } else { - WHBLogWritef("Skipping %s, its already patched", method_hooks[i].functionName); + WHBLogPrintf("Skipping %s, its already patched", method_hooks[i].functionName); space += instr_len; continue; }