我有一个 ASP.NET 网站。我正在编写日志文件以获取页面的总时间跨度。在 txt 文件中写入日志会影响我的程序的性能吗?我将其记录在诸如OnUnload
.
string logString = string.Format("The total time span for the '{0}' is {1}ms",
_page,
span.TotalMilliseconds);
WriteLog(logString);
日志摘录:
8/6/2013 05:38:27]:The total time span for the 'Assign' is 3121.1785ms
[8/6/2013 05:38:27]:The total time span for the 'Assign' is 5.0002ms
[8/6/2013 05:38:27]:The total time span for the 'Assign' is 5.0003ms
[8/6/2013 05:38:27]:The total time span for the 'Assign' is 4.0002ms
[8/6/2013 05:38:27]:The total time span for the 'Assign' is 5.0003ms
[8/6/2013 05:38:27]:The total time span for the 'Assign' is 6.0004ms