mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
chore: don't log exception for aborted loads when banned
This commit is contained in:
parent
276a80067c
commit
5bb09ddbd4
1 changed files with 3 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue