当我遇到一篇文章(http://www.daveoncsharp.com/2009/09/create-a-logger-using-the-trace-listener-in-时,我正在寻找一种解决方案来为我的最新项目提供日志记录) csharp/ ) 讨论了使用 System.Diagnostics 和 App.config 通过 Trace 方法进行日志记录。我能够成功地实现类和 App.config,但我真的希望能够动态分配日志文件的值/位置(在 initializeData 中),但我不知道该怎么做. 如果您有任何建议,请随时发表!
应用程序配置:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.diagnostics>
<trace autoflush="true" indentsize="4">
<listeners>
<add name="myListener"
type="System.Diagnostics.TextWriterTraceListener"
initializeData="fileSizeThreshold=512, fileSizeUnit=kilobytes,
fileAgeThreshold=1, fileAgeUnit=months, fileNameTemplate='{0}\MyApp-{1:MMM-yy}.log'"/>
<remove name="Default" />
</listeners>
</trace>
</system.diagnostics>
</configuration>
记录器类:
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
namespace MyCurrentProject
{
class Logger
{
public void Error(string module, string message)
{
WriteEntry(message, "ERROR:", module);
}
public void Error(Exception ex, string module)
{
WriteEntry(ex.Message, "ERROR:", module);
}
public void Warning(string module, string message)
{
WriteEntry(message, "WARNING:", module);
}
public void Info(string module, string message)
{
WriteEntry(message, "INFO:", module);
}
private void WriteEntry(string message, string type, string module)
{
Trace.WriteLine(
string.Format("{0} {1} [{2}] {3}",
DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
type,
module,
message));
}
}
}
RE:抱歉不清楚...只是为了清楚起见,我需要动态设置保存日志文件输出的文件路径。我想要保存到 %AppData% 中某个位置的路径。我在配置中遇到的问题是,一旦我为“initializeData”设置了值,我就找不到更改或动态设置/重置该值的方法。说实话...在这一点上,我只想要一个可行的解决方案,并允许我管理日志文件的位置。