From d48d42d307462fc7bc53e9e0d90473bcc2ff81b3 Mon Sep 17 00:00:00 2001 From: Kaz Wolfe Date: Mon, 1 Jul 2024 09:19:32 -0700 Subject: [PATCH] Change log level for manifest issues --- Dalamud/Plugin/Internal/PluginManager.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dalamud/Plugin/Internal/PluginManager.cs b/Dalamud/Plugin/Internal/PluginManager.cs index ef2116669..1d15e7ef2 100644 --- a/Dalamud/Plugin/Internal/PluginManager.cs +++ b/Dalamud/Plugin/Internal/PluginManager.cs @@ -554,14 +554,14 @@ internal class PluginManager : IInternalDisposableService var manifestFile = LocalPluginManifest.GetManifestFile(dllFile); if (!manifestFile.Exists) { - Log.Information("DLL at {DllPath} has no manifest, this is no longer valid", dllFile.FullName); + Log.Error("DLL at {DllPath} has no manifest, this is no longer valid", dllFile.FullName); continue; } var manifest = LocalPluginManifest.Load(manifestFile); if (manifest == null) { - Log.Information("Could not deserialize manifest for DLL at {DllPath}", dllFile.FullName); + Log.Error("Could not deserialize manifest for DLL at {DllPath}", dllFile.FullName); continue; } @@ -816,14 +816,14 @@ internal class PluginManager : IInternalDisposableService var manifestFile = LocalPluginManifest.GetManifestFile(dllFile); if (!manifestFile.Exists) { - Log.Information("DLL at {DllPath} has no manifest, this is no longer valid", dllFile.FullName); + Log.Error("DLL at {DllPath} has no manifest, this is no longer valid", dllFile.FullName); continue; } var manifest = LocalPluginManifest.Load(manifestFile); if (manifest == null) { - Log.Information("Could not deserialize manifest for DLL at {DllPath}", dllFile.FullName); + Log.Error("Could not deserialize manifest for DLL at {DllPath}", dllFile.FullName); continue; }