NLog:在文件中将\r\n替换为实际换行符

huangapple go评论93阅读模式
英文:

NLog: replace \r\n with actual line break in file

问题

How to make NLog insert actual line breaks to the target file instead of \r\n in ${message}?

如何使NLog在目标文件中插入实际的换行符而不是${message}中的\r\n

英文:

How to make NLog insert actual line breaks to the target file instead of \r\n in ${message}?

I am using a config file to configure NLog as follows:

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <variable name="logDirectory" value="Logs" />
  5. <targets>
  6. <target name="txtFile" xsi:type="File" fileName="${logDirectory}/${shortdate}.txt" />
  7. <target name="jsonFile" xsi:type="File" fileName="${logDirectory}/${shortdate}.json" >
  8. <layout type="JsonLayout" IndentJson="true">
  9. <attribute name="time" layout="${date:format=yyyy-MM-dd HH\:mm\:ss}" />
  10. <attribute name="message" layout="${message:raw=true}" />
  11. <attribute name="exception" layout="${exception}" />
  12. </layout>
  13. </target>
  14. </targets>
  15. <rules>
  16. <logger name="*" minlevel="Error" writeTo="jsonFile" />
  17. </rules>
  18. </nlog>

and I am using NLog in a C# application. The logged messages contain Environment.NewLine characters which are currently replaced by \r\n in the log file.

  1. public class SomeClass
  2. {
  3. static readonly Logger logger = LogManager.GetCurrentClassLogger();
  4. public void DoStuff()
  5. {
  6. try
  7. {
  8. // ... some code
  9. }
  10. catch(Exception n)
  11. {
  12. string msg = "Failed to do stuff" + Environment.NewLine +
  13. "Try again later";
  14. logger.Error(n, msg);
  15. }
  16. }
  17. }

答案1

得分: 1

使用NLog的JsonLayout时,它会将换行符编码为字符\r\n,这是JSON格式所需的。

如果不需要正确的JSON输出,那么可以使用选项encode="false"

  1. <layout xsi:type="JsonLayout" IndentJson="true">
  2. <attribute name="message" layout="${message:raw=true}" encode="false" />
  3. </layout>

或者,可以考虑停止使用JsonLayout。

英文:

When using the NLog JsonLayout, then it will encode newlines as the chars \r\n, as required by the JSON-format.

If correct JSON output is not relevant, then you can use the option encode=&quot;false&quot;:

  1. &lt;layout xsi:type=&quot;JsonLayout&quot; IndentJson=&quot;true&quot;&gt;
  2. &lt;attribute name=&quot;message&quot; layout=&quot;${message:raw=true}&quot; encode=&quot;false&quot; /&gt;
  3. &lt;/layout&gt;

Alternative stop using JsonLayout.

huangapple
  • 本文由 发表于 2023年6月8日 18:24:06
  • 转载请务必保留本文链接:https://go.coder-hub.com/76430894.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定