Enabling Verbose Logging

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:

1. 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>
2. Change the Attribute value ' switchValue' from ' Information' to ' All' like this:
<allEvents switchValue="All" name="All Events">
3. Restart the server (Tools | Restart Server)