mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 13:14:17 +01:00
Change log level for manifest issues
This commit is contained in:
parent
cccb2709fa
commit
d48d42d307
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue