Logging the Aggregation Service
You can configure logging of the Aggregation Service in the AggregationService.exe.config file.
Procedure
- Open the
AggregationService.exe.configconfiguration file, located by default in your SDL Tridion installation\bindirectory. - In the
<specialSources>section, configure the logging level of the Aggregation Service by chnging the value of theswitchValue=""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 & Warnings"> <listeners> <add name="Aggregation Event Log" /> </listeners> </errors> </specialSources> - Save and close the file.