fix: remove duplicate exception log

This commit is contained in:
goat 2021-07-15 03:50:13 +02:00
parent 6ec657266b
commit 386251f232
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -199,9 +199,9 @@ namespace Dalamud.Plugin.Internal
{
// Not a plugin
}
catch (Exception ex)
catch (Exception)
{
Log.Error(ex, "During boot plugin load, an unexpected error occurred");
Log.Error("During boot plugin load, an unexpected error occurred");
}
}
}