From 29ba86021c21c1ed50d02ce62864d172cb33d2a5 Mon Sep 17 00:00:00 2001 From: goat Date: Mon, 10 Apr 2023 20:45:29 +0200 Subject: [PATCH] remove spammy log --- Dalamud/Plugin/Internal/Profiles/ProfileManager.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dalamud/Plugin/Internal/Profiles/ProfileManager.cs b/Dalamud/Plugin/Internal/Profiles/ProfileManager.cs index 62ade19b2..e5455cd44 100644 --- a/Dalamud/Plugin/Internal/Profiles/ProfileManager.cs +++ b/Dalamud/Plugin/Internal/Profiles/ProfileManager.cs @@ -68,8 +68,6 @@ internal class ProfileManager : IServiceType foreach (var profile in this.profiles) { var state = profile.WantsPlugin(internalName); - Log.Verbose("Checking {Name} in {Profile}: {State}", internalName, profile.Guid, state == null ? "null" : state); - if (state.HasValue) { want = want || (profile.IsEnabled && state.Value);