有沒有使用NLog給特定單詞上色的方法?我的目標是ColoredConsole
。NLog:ColoredConsole中的顏色特定單詞
比方說,我要的顏色的longdate紅色和調用點藍色。什麼是最好的方式來做到這一點?這似乎並不工作:
<target xsi:type="ColoredConsole"
name="debugConsole"
layout="${longdate} ${callsite} ${message}">
<highlight-word text="${longdate}" foregroundColor="Red" />
<highlight-word text="${callsite}" foregroundColor="Blue" />
</target>
見(https://github.com/nlog/NLog/wiki/ColoredConsole-target) – Amy
嗨艾米[爲'ColoredConsoleTarget'文件],感謝您的幫助。我已經用我目前的嘗試更新了我的問題。 – Aetherix
'text'屬性不是'Layout'。這將是太昂貴,因此這不會工作。 – Julian