我的任务是在 .net 应用程序中记录和跟踪异常。目的是在部署应用程序后记录所有数据。并且信息应该易于追踪以处理错误。我们正在使用天蓝色服务。为了使问题陈述更清楚,这里有一些演示代码
public bool Connect()
{
try
{
while (!IsConnected())
{
_terminal = new TerminalClient("denaliTermClient", _terminalsrv_host, _terminalsrv_port);
if (_terminal.KillTerminals())
{
_logger.Log("Existing terminals killed successfully");
}
else
{
_logger.Log("Failed killing existing terminals");
}
_connection.Connect(
_terminalsrv_host,
_terminalsrv_port,
_broker,
_account,
_password);
}
return true;
}
catch (Exception ex)
{
long cid = DefaultLogger.CorrelationID;
_logger.Log(cid, ex);
if (ex.Message != null)
{
if (ex.Message.Contains("No connection could be made because the target machine actively refused it"))
{
_logger.Log(cid, "Connection Failed. Please start the Nj4x Terminal Server.");
}
else if (ex.Message.Contains("Invalid user name or password"))
{
_logger.Log(cid, "Nj4x is running in trial mode. Cannot start trading.");
}
}
this.Connect(); // TODO !
}
return false;
}
现在我应该如何实现这个 ILogger 接口。我应该使用哪些服务?我没有这方面的经验,所以显然我对此并不了解。希望我已经清楚地说明了问题。
编辑:我不喜欢登录 .txt 文件的想法。这将包含数千条日志,因此不容易追踪。我正在寻找一些有助于处理的好框架。