From a2144688cb74f078126147a7cc117870426bd2da Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Tue, 18 Jul 2023 00:58:06 +0200 Subject: [PATCH] Remove logging. --- Glamourer/Interop/UpdateSlotService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Glamourer/Interop/UpdateSlotService.cs b/Glamourer/Interop/UpdateSlotService.cs index f062a4f..d2357ba 100644 --- a/Glamourer/Interop/UpdateSlotService.cs +++ b/Glamourer/Interop/UpdateSlotService.cs @@ -62,7 +62,7 @@ public unsafe class UpdateSlotService : IDisposable var slot = slotIdx.ToEquipSlot(); var returnValue = ulong.MaxValue; SlotUpdatingEvent.Invoke(drawObject, slot, ref *data, ref returnValue); - Glamourer.Log.Information($"[FlagSlotForUpdate] Called with 0x{drawObject:X} for slot {slot} with {*data} ({returnValue})."); + Glamourer.Log.Excessive($"[FlagSlotForUpdate] Called with 0x{drawObject:X} for slot {slot} with {*data} ({returnValue})."); return returnValue == ulong.MaxValue ? _flagSlotForUpdateHook.Original(drawObject, slotIdx, data) : returnValue; } @@ -70,7 +70,7 @@ public unsafe class UpdateSlotService : IDisposable { var slot = slotIdx.ToEquipSlot(); EquipmentLoadingEvent.Invoke(drawDataContainer->Parent, slot, data); - Glamourer.Log.Information($"[LoadEquipment] Called with 0x{(ulong)drawDataContainer:X} for slot {slot} with {data} ({force})."); + Glamourer.Log.Excessive($"[LoadEquipment] Called with 0x{(ulong)drawDataContainer:X} for slot {slot} with {data} ({force})."); _loadEquipmentHook.Original(drawDataContainer, slotIdx, data, force); }