The 'Exception' class that was part of the previous framework used to include 'SendAsNotification' methods which were called by
the BaseHttpApplication class. This used to allow the developer to configure Error.Notification.Receiver in the config file to send any runtime errors encountered to a list of recipients.
These methods are omitted from the dot net core Olive framework (-Extensions/Exception.cs)
Could this be added to Olive ?
In the meantime we can workaround this by adding some code in the SharedActionsController class and by using Microsoft.AspNetCore.Diagnostics and then adding logic to the Error() method extracting the exception that had occurred eg: Context.Current.Http().Features.Get();
The 'Exception' class that was part of the previous framework used to include 'SendAsNotification' methods which were called by the BaseHttpApplication class. This used to allow the developer to configure Error.Notification.Receiver in the config file to send any runtime errors encountered to a list of recipients.
These methods are omitted from the dot net core Olive framework (-Extensions/Exception.cs)
Could this be added to Olive ?
In the meantime we can workaround this by adding some code in the SharedActionsController class and by using Microsoft.AspNetCore.Diagnostics and then adding logic to the Error() method extracting the exception that had occurred eg: Context.Current.Http().Features.Get();