Quellcode durchsuchen

Clean up FastNativeDetour logging

Bepis vor 3 Jahren
Ursprung
Commit
3558ebf963
1 geänderte Dateien mit 2 neuen und 4 gelöschten Zeilen
  1. 2 4
      BepInEx.IL2CPP/Hook/FastNativeDetour.cs

+ 2 - 4
BepInEx.IL2CPP/Hook/FastNativeDetour.cs

@@ -66,15 +66,13 @@ namespace BepInEx.IL2CPP.Hook
 
 			GenerateTrampolineInner(out int trampolineLength, out int jmpLength);
 
-			debuggerLogSource?.LogDebug($"Cleared function length: {trampolineLength} - {jmpLength} = {trampolineLength - jmpLength}");
-
-			debuggerLogSource?.LogDebug($"Trampoline allocation: 0x{TrampolinePtr.ToString("X")}");
-
 			DetourGenerator.ApplyDetour(OriginalFunctionPtr, DetourFunctionPtr, arch, trampolineLength - jmpLength);
 
 
 			if (debuggerLogSource != null)
 			{
+				debuggerLogSource.LogDebug($"Trampoline allocation: 0x{TrampolinePtr.ToString("X")}");
+
 				debuggerLogSource.LogDebug("Modified (32) asm");
 
 				DetourGenerator.Disassemble(debuggerLogSource, OriginalFunctionPtr, 32);