From 0282d4127e7902d4d45496b53607a5be351f2460 Mon Sep 17 00:00:00 2001 From: karashiiro <49822414+karashiiro@users.noreply.github.com> Date: Tue, 31 Mar 2020 12:46:07 -0700 Subject: [PATCH] chore: set log level of actor index message to verbose --- Dalamud/Game/ClientState/Actors/ActorTable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Game/ClientState/Actors/ActorTable.cs b/Dalamud/Game/ClientState/Actors/ActorTable.cs index 18205fb15..407ce7132 100644 --- a/Dalamud/Game/ClientState/Actors/ActorTable.cs +++ b/Dalamud/Game/ClientState/Actors/ActorTable.cs @@ -80,7 +80,7 @@ namespace Dalamud.Game.ClientState.Actors { var offset = Marshal.ReadIntPtr(tblIndex); - Log.Information("Actor at {0} for {1}", offset.ToInt64().ToString("X"), index); + Log.Verbose("Actor at {0} for {1}", offset.ToInt64().ToString("X"), index); if (offset == IntPtr.Zero) return null;