Browse Source

Fixed loader error printer for standard IPA mods

pull/46/head
Anairkoen Schno 5 years ago
parent
commit
86557fd503
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      IPA.Loader/Loader/PluginManager.cs

+ 1
- 1
IPA.Loader/Loader/PluginManager.cs View File

@ -241,7 +241,7 @@ namespace IPA.Loader
catch (ReflectionTypeLoadException e)
{
Logger.loader.Error($"Could not load the following types from {Path.GetFileName(file)}:");
Logger.loader.Error($" {string.Join(", ", e.Types.Select(t => t.FullName))}");
Logger.loader.Error($" {string.Join("\n ", e.LoaderExceptions.Select(e1 => e1?.Message))}");
}
catch (Exception e)
{


Loading…
Cancel
Save