[PATCH] mscoree: Remove individual vtable fixup traces.

Esme Povirk esme at codeweavers.com
Wed Feb 17 16:02:17 CST 2021


Signed-off-by: Esme Povirk <esme at codeweavers.com>
---
This just causes log spam. Any useful information can be found from
errors or using WINE_MONO_VERBOSE=1.

 dlls/mscoree/corruntimehost.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dlls/mscoree/corruntimehost.c b/dlls/mscoree/corruntimehost.c
index cf8acae09e0..51522c57d83 100644
--- a/dlls/mscoree/corruntimehost.c
+++ b/dlls/mscoree/corruntimehost.c
@@ -1319,7 +1319,6 @@ static void CDECL ReallyFixupVTable(struct dll_fixup *fixup)
                 ULONG_PTR *tokens = fixup->tokens;
                 for (i=0; i<fixup->fixup->count; i++)
                 {
-                    TRACE("%#lx\n", tokens[i]);
                     vtable[i] = mono_marshal_get_vtfixup_ftnptr(
                         image, tokens[i], fixup->fixup->type);
                 }
@@ -1363,7 +1362,6 @@ static void FixupVTableEntry(HMODULE hmodule, VTableFixup *vtable_fixup)
     fixup->vtable = (BYTE*)hmodule + vtable_fixup->rva;
     fixup->done = FALSE;
 
-    TRACE("vtable_fixup->type=0x%x\n",vtable_fixup->type);
 #if __x86_64__
     if (vtable_fixup->type & COR_VTABLE_64BIT)
 #else
-- 
2.25.1




More information about the wine-devel mailing list