summaryrefslogtreecommitdiffstats
path: root/src/main.lib/Services/PluginService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.lib/Services/PluginService.cs')
-rw-r--r--src/main.lib/Services/PluginService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.lib/Services/PluginService.cs b/src/main.lib/Services/PluginService.cs
index 7b490c1..a0db0a3 100644
--- a/src/main.lib/Services/PluginService.cs
+++ b/src/main.lib/Services/PluginService.cs
@@ -161,7 +161,7 @@ namespace PKISharp.WACS.Services
types = rex.Types;
foreach (var lex in rex.LoaderExceptions)
{
- _log.Error(lex, "Error loading type from {assembly}", assembly.FullName);
+ _log.Error(lex, "Error loading type from {assembly}: {reason}", assembly.FullName, lex.Message);
}
}
catch (Exception ex)
@@ -194,7 +194,7 @@ namespace PKISharp.WACS.Services
types = rex.Types;
foreach (var lex in rex.LoaderExceptions)
{
- _log.Error(lex, "Error loading type from {assembly}", file);
+ _log.Error(lex, "Error loading type from {assembly}: {reason}", file, lex.Message);
}
}
catch (Exception ex)