mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +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)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
this.State = PluginState.LoadError;
|
this.State = PluginState.LoadError;
|
||||||
|
|
||||||
|
if (ex is not BannedPluginException)
|
||||||
Log.Error(ex, $"Error while loading {this.Name}");
|
Log.Error(ex, $"Error while loading {this.Name}");
|
||||||
|
|
||||||
throw;
|
throw;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue