检查是否将使用nlog消息

时间:2015-03-06 10:00:22

标签: c# .net nlog

我正在使用Common.Logging.LogManager.GetLogger()。Trace()将表内容输出到nlog日志中。 除非有人在nlog中启用了跟踪过滤器,否则查询SQL不是您想要执行的操作。

    this.log.TraceFormat("After import: \r\n" + SqlHelper.GetSqlResults("select * from " + atomDefinition.Table.FullName));

如果由于当前的nlog配置设置而无法将该行发送到任何日志,是否可以绕过该行?

1 个答案:

答案 0 :(得分:0)

在配置文件中设置一个密钥,并在拨打电话前进行检查。

if(System.Configuration.ConfigurationManager.AppSettings[shouldLog] == "true") {
    this.log.TraceFormat("Af....
}