Change log level for manifest issues

This commit is contained in:
Kaz Wolfe 2024-07-01 09:19:32 -07:00
parent cccb2709fa
commit d48d42d307
No known key found for this signature in database
GPG key ID: 258813F53A16EBB4

View file

@ -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;
}