Hi,
In my project for tracing I am using FileLogTraceListener the below is my config setting
<add name="text"
type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
traceOutputOptions="DateTime"
location="Custom"
customLocation="E:\Logs"
baseFileName="tracelog"
maxFileSize="5000"
autoFlush="true"
LogFileCreationSchedule ="None"/>
So the issue is if my trace file size is exceeds (i.e., 5KB) then it should automatically create the another trace file and write t ...
Go to the complete details ...