From eb66d0b0892956e986db3a91fa1681469e81abf7 Mon Sep 17 00:00:00 2001 From: Aaro Varis Date: Sun, 9 Mar 2025 01:15:18 +0200 Subject: [PATCH] remove the most spammy debug logs --- BoneSync/Patching/PoolPatches.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BoneSync/Patching/PoolPatches.cs b/BoneSync/Patching/PoolPatches.cs index c09bed0..16e9fa1 100644 --- a/BoneSync/Patching/PoolPatches.cs +++ b/BoneSync/Patching/PoolPatches.cs @@ -77,7 +77,7 @@ namespace BoneSync.Patching if (CallPatchedMethods.allowPatchedMethodCall) return; if (__instance == null) return; if (PoolBlacklist.isBlacklistedPool(__instance)) return; - MelonLogger.Msg("Patched Instantiating object in pool: " + __instance.name); + //MelonLogger.Msg("Patched Instantiating object in pool: " + __instance.name); __result.onSpawnDelegate = Il2CppSystem.Delegate.Combine(__result.onSpawnDelegate, (Il2CppSystem.Action)((g) => { PooleePatches.OnSpawnPatchPost(__result); })).Cast>(); __result.onDespawnDelegate = Il2CppSystem.Delegate.Combine(__result.onDespawnDelegate, (Il2CppSystem.Action)((g) => { PooleePatches.OnDespawnPatchPost(__result); })).Cast>(); @@ -141,7 +141,7 @@ namespace BoneSync.Patching if (syncable == null) return; - MelonLogger.Msg("Poolee.OnSpawn: " + __instance.gameObject.transform.GetPath() + " " + syncable.GetSyncId()); + //MelonLogger.Msg("Poolee.OnSpawn: " + __instance.gameObject.transform.GetPath() + " " + syncable.GetSyncId()); }