Installation
Changelog
-
Removed default logging (see fa91eca)
The package would write various information to the Umbraco log, which then could be a privacy issue as we shouldn't save user information etc. to the log. This has now been fixed by not writing to the log at all. -
Improved the exception handling (see f949d2e)
TheSaveUpdateSubscriber
method would internally catch any exceptions, and then just return an empty result on failure. This would however prevent us from handling the exceptions in the code calling theSaveUpdateSubscriber
.With this release, the method will now catch and wrap any exceptions with an instance of
MailChimpSignupException
, which we can then catch in our custom code calling the method.