我有一个名为作业的自定义布局渲染器。它提供了几个项目,在我们的app.config中使用如下:
<variable name="jobHost" value = "${job:item=host}" />
<variable name="jobService" value = "${job:item=service}" />
<variable name="jobNS" value = "${job:item=ns}" />
<variable name="jobName" value = "${job:item=name}" />
<variable name="jobKind" value = "${job:item=kind}" />
<variable name="jobScheduleId" value = "${job:item=scheduleId}" />
<variable name="jobLayout" value = "[H:${jobHost} S:${jobService} NS:${jobNS} N:'${jobName}' K:${jobKind} S:${jobScheduleId}]" />
<variable name="layout" value = "${longdate} [${threadid}] ${machinename} ${jobLayout} ${uppercase:inner=${level}} ${logger} - ${message} ${onexception:${newline}${exception:format=ToString:innerFormat=ToString:maxInnerExceptionLevel=2}}" />
<targets>
<target name="ThreadLog" xsi:type="ThreadSpecificTarget" />
<target xsi:type="SplitGroup" name="AllTargets">
<target name="TextFile" xsi:type="File" fileName="C:\Log\QuartzBackgroundEngine.txt" layout="${layout}"/>
<target name="Console" xsi:type="ColoredConsole" layout="${layout}"/>
</target>
</targets>
当布局渲染器确定没有可用的作业特定数据时,日志消息包含字符串[H: S: NS: N:'' K: S:]
。我想排除它。
所以,我尝试用${jobLayout}
替换${jobLayout:when=jobName!=’’}
,但它不起作用,因为NLog认为jobLayout
应该对应于布局渲染器,而不是变量,这是这里的情况。
如何更改布局,以便仅在${jobLayout}
不为空时才包含${jobName}
?
答案 0 :(得分:4)
我遇到了类似的问题,我希望在变量不为空时显示一些特殊的格式。
我从Most useful NLog configurations
中获取了一些灵感 ${when:when=length('${jobName}') > 0:inner=${jobLayout}}
我不确定这是否会让你100%在那里,但这是朝着正确方向迈出的一步。
答案 1 :(得分:2)
您是否尝试过whenEmpty布局渲染器? https://github.com/nlog/NLog/wiki/WhenEmpty-Layout-Renderer