chore: don't log exception for aborted loads when banned

This commit is contained in:
goat 2023-05-24 22:55:46 +02:00
parent 276a80067c
commit 5bb09ddbd4
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -467,6 +467,8 @@ internal class LocalPlugin : IDisposable
catch (Exception ex)
{
this.State = PluginState.LoadError;
if (ex is not BannedPluginException)
Log.Error(ex, $"Error while loading {this.Name}");
throw;