antdui-demo/NLog.config
2024-08-26 11:30:33 +08:00

18 lines
590 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<!-- 定义日志文件的目标 -->
<target xsi:type="File" name="logfile" fileName="logs/logfile.log"
archiveEvery="Day"
archiveNumbering="Date"
maxArchiveFiles="7"
archiveFileName="logs/archived/log.{##}.log"
layout="${longdate} ${level} ${message} ${newline} ${exception}" />
</targets>
<rules>
<logger name="*" minlevel="Error" writeTo="logfile" />
</rules>
</nlog>