开发者

TextWriterTraceListener trace file too large

开发者 https://www.devze.com 2023-01-12 03:26 出处:网络
I am using C# System.Diagnostics.TextWriterTraceListener to print trace. But the trace file becomes too large (hundreds of MBs).

I am using C# System.Diagnostics.TextWriterTraceListener to print trace. But the trace file becomes too large (hundreds of MBs). I want to change the behavior of TextWriterTraceListener, that if the trace file becomes large, it writes output to another file. For example, the original trace file is 'output1.txt', if it becomes larger than 100MB, then TextWriterTraceListener should write to 'output2.txt'.

开发者_C百科

Have you encountereds similar problems? Are there any elegant solutions?


Two options I can think of:

  1. Write your own TextWriter implementation that does this, and set the TextWriterTraceListener.Writer property to an instance of it. Here's a sample implementation that does this, although it rolls over on a time (daily) basis rather than on a file-size basis.
  2. Switch to log4net and use a RollingFileAppender.
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号