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);