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:

  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. Here, change the value of the attribute ' switchValue' from ' Information' to ' All' like this:
    <allEvents switchValue="All" name="All Events">
  3. Restart the server (Tools | Restart Server)