Fail and display fullName

This commit is contained in:
Raymond 2021-08-22 08:21:47 -04:00
parent 5303a93a3d
commit a7bb97c91f

View file

@ -62,7 +62,7 @@ namespace Dalamud.Plugin.Internal
this.pluginType = null;
this.loader.Dispose();
Log.Error(ex, $"Not a plugin: {this.DllFile.Name}");
Log.Error(ex, $"Not a plugin: {this.DllFile.FullName}");
throw new InvalidPluginException(this.DllFile);
}
@ -73,7 +73,7 @@ namespace Dalamud.Plugin.Internal
this.pluginType = null;
this.loader.Dispose();
Log.Error($"Nothing inherits from IDalamudPlugin: {this.DllFile.Name}");
Log.Error($"Nothing inherits from IDalamudPlugin: {this.DllFile.FullName}");
throw new InvalidPluginException(this.DllFile);
}