I am using a sync service to sync between compact database and server. In web.config, i am diagnosing the sync and logging in the file like this:
<system.diagnostics>
<sources>
<source name="System.ServiceModel" switchValue="Information, ActivityTracing" propagateActivity="true">
<listeners>
<add name="traceListener" type="System.Diagnostics.XmlWriterTraceListener" initializeData="C:\MISTYLogs\SYNCService\syncTraces.svclog"></add>
</listeners>
</source>
</sources>
<switches>
<add name="SyncTracer" value="3"/>
</switches>
<trace autoflush="true">
<listeners>
<add name="SyncListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="C:\MISTYLogs\SYNCService\syncinf.txt"/>
</listeners>
</trace>
</system.diagnostics>
During sync process, the file size becomes more than one gb. I want to restrict the log file size to some limit and after crossing that limit, it should create another log file and so on. How to achieve this using configuration settings??
Kindly suggest?
Look into using the FileLogTraceListener.