From 86557fd503a7700bcaa1f9ba9450891cec0af612 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Tue, 23 Apr 2019 23:37:40 -0500 Subject: [PATCH] Fixed loader error printer for standard IPA mods --- IPA.Loader/Loader/PluginManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPA.Loader/Loader/PluginManager.cs b/IPA.Loader/Loader/PluginManager.cs index f4ae9eb7..8d13dbb7 100644 --- a/IPA.Loader/Loader/PluginManager.cs +++ b/IPA.Loader/Loader/PluginManager.cs @@ -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) {