0

是否可以通过代码更改source名称?我的解决方案有几个模块,我想在查看日志时将它们分开。

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <targets>
    <target xsi:type="EventLog" name="eventlog" layout="${message}" log="Application" source="MyAwesomeSolution"/>
  </targets>
  <rules>
    <logger name="*" minlevel="Info" writeTo="eventLog" />
  </rules>
</nlog>

另外,如何将对象记录为 xml?例如,如果我这样做 - logger.Info("Results - {0}", person);我想person在我的事件日志中以 XML 形式查看对象。是否可以?

4

1 回答 1

0

初始化您的 Logger 对象

private static Logger logger = LogManager.GetCurrentClassLogger();

然后你可以添加

${callsite}配置文件中的布局

例如

<targets>
    <target xsi:type="EventLog" name="eventlog" layout="${callsite}:${message}" log="Application" source="MyAwesomeSolution"/>
</targets>

更多信息@${callsite} 在这里

于 2012-05-25T17:04:36.797 回答