Logging the Aggregation Service

You can configure logging of the Aggregation Service in the AggregationService.exe.config file.

Procedure

  1. Open the AggregationService.exe.config configuration file, located by default in your SDL Tridion installation \bin directory.
  2. In the <specialSources> section, configure the logging level of the Aggregation Service by chnging the value of the switchValue="" attribute:
    • Off—does not allow any events through.
    • All—allows all events through.
    • Error—allows Error events through. An Error event is a recoverable error.
    • Warning—allows Error, and Warning events through. A Warning event is a non-critical problem.
    • Information—allows Error, Warning, and Information events through. An information event is an informational message.
    • Verbose—allows Error, Warning, Information, and Verbose events through. A Verbose event is a debugging trace.
    <specialSources>      
          <allEvents switchValue="Information" name="All Events">
            <listeners>
              <add name="Aggregation Log File" />
            </listeners>
          </allEvents>
          <notProcessed switchValue="Information" name="Unprocessed Category" />
          <errors switchValue="Information" name="Logging Errors &amp; Warnings">
            <listeners>
              <add name="Aggregation Event Log" />
            </listeners>
          </errors>
     </specialSources>
  3. Save and close the file.