在 NLog 的 4.6 版本中添加了一些新特性。其中之一 - XMLLayout。有什么方法可以通過正確的縮進在 XMLLayout 目標(biāo)中保存 xml 格式的消息?另一個問題是如何對分層屬性值輸出做同樣的事情?在我的配置和消息代碼下面<target name="xmlFile" xsi:type="File" fileName="my_log.xml" maxArchiveFiles="3" archiveNumbering="Sequence" archiveDateFormat="dd-mm-yyyy" archiveOldFileOnStartup="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <layout xsi:type="XmlLayout" indentXml="true" includeAllProperties="true" includeMdc="true"> <attribute name="logger" layout="${logger}" /> <attribute name="callsite" layout="${callsite}" /> <attribute name="line" layout="${callsite-linenumber}" /> <element name="message" value="${message}" /> <element name="exception" value="${exception:format=toString}" /> </layout></target>測試 xml 文本。測試留言:"<hello person=\"x\"><child>child value</child></hello>"結(jié)果不縮進:<logevent logger="Logs" callsite="WriteLogMessages.LogMessages" line="36"> <message><hello person="x"><child>child value</child></hello></message></logevent>測試性能。用于測試的 LogEventInfo:var root = new Dictionary<string, object>();var branches = new Dictionary<string, object>();var leaf = new Dictionary<string, object>();leaf["leaf"] = "This is the leaf";branches["branches"] = leaf;root["root"] = branches;var logEvent = new LogEventInfo();logEvent.Level = logLevel;logEvent.Message = message;logEvent.Properties["properties test"] = root;結(jié)果:<logevent logger="Logs" callsite="WriteLogMessages.LogMessages" line="26"> <message>Test message.</message> <property key="properties test"> <property key="root"></property>我知道可能需要在 Dictionary 上創(chuàng)建一個包裝器并覆蓋 ToString(),但結(jié)果是問題 1。預(yù)期結(jié)果:<logevent logger="Logs" callsite="WriteLogMessages.LogMessages" line="36"> <message> <hello person="x"> <child>child value</child> </hello> </message></logevent>
如何使用縮進的 xml 消息創(chuàng)建 NLog XmlLayout?
阿波羅的戰(zhàn)車
2022-11-13 13:38:22