Create the configurator class
After you create the trace listener class, you create the configurator class. The configurator class implements the ISitefinityLogCategoryConfiguratorinterface. The purpose of this class is to configure the types of errors that the custom trace listener handles. Situations that are not handled by your custom configurator are delegated to the default one to form a chain of responsibility. To create the configurator class:
- In Visual Studio, open the context menu of the ExternalLogging project and click Add » Class
- Name the class file
RaygunConfigurator.csand click Add. - Make the
RaygunConfiguratorclass implement theISitefinityLogCategoryConfiguratorclass. - Define the constructors and the fields.
In this section of the code, theRaygunConfiguratorconstructor sets the default configurator and the configuration policy. - Implement the
ISitefinityLogCategoryConfiguratormethods.
In theConfiguremethod, the name of the category is checked and, if it matches the configuration policy, theRaygunTraceListeneris called. Otherwise, the default configurator is called to resolve the current category.
GITHUB EXAMPLE: For more information about the content of the file, see the RaygunConfigurator.cs file of the downloaded sample project.
Want to learn more?
Enhance your Sitefinity skills by enrolling in free training sessions. Become Sitefinity certified through Progress Education Community to strengthen your professional credentials.
Get started with Integration Hub | Sitefinity Cloud
This free lesson teaches administrators, marketers, and other business professionals how to use Sitefinity Integration Hub to create automated workflows between Sitefinity and other business systems.
Web Security for Sitefinity Administrators
This free lesson teaches administrators the basics about protecting your Sitefinity instance and your sites from external threats. Configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.
Foundations of Sitefinity ASP.NET Core Development
The free on-demand video course teaches developers how to use Sitefinity ASP.NET Core and take advantage of its decoupled architecture and modern development model.