使用 NLog,我可以使用另一个 LayoutRender 的值设置 属性 吗?
With NLog can I set the property of a LayoutRender using the value of another one?
我想在另一个配置中使用 LayoutRenderer,例如
${message:exceptionSeparator=${newline}:withException=true}
这可能吗?
谢谢
我猜你可以使用这个解决方法:
${message}${onexception:${newline}}${exception:format=tostring}
但是是的,支持标准字符串属性的字符串文字标记(如 ${newline}
)会很好。
我想在另一个配置中使用 LayoutRenderer,例如
${message:exceptionSeparator=${newline}:withException=true}
这可能吗?
谢谢
我猜你可以使用这个解决方法:
${message}${onexception:${newline}}${exception:format=tostring}
但是是的,支持标准字符串属性的字符串文字标记(如 ${newline}
)会很好。