Enabling Verbose Logging
Enable verbose logging for detailed information about your website's work
By default, all but 'Verbose' events are logged. To enable verbose logging:
- You can install the Composite.Tools.VerboseLogging package that does it automatically
- Or you can do it manually as described below:
- Edit
~/App_Data/Composite/Composite.config
and find this section:<configuration> <!-- XML removed for simplicity --> <loggingConfiguration name="Logging Application Block" tracingEnabled="true" defaultCategory="General" logWarningsWhenNoCategoriesMatch="true"> <!-- XML removed for simplicity --> <specialSources> <allEvents switchValue="Information" name="All Events"> <listeners> <add name="FileLogTraceListener" /> </listeners> </allEvents> <!-- XML removed for simplicity --> </specialSources> </loggingConfiguration> </configuration>
- Here, change the value of the attribute '
switchValue
' from 'Information
' to 'All
' like this:<allEvents switchValue="All" name="All Events">
- Restart the server (Tools | Restart Server)