18 lines
577 B
XML
18 lines
577 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"
|
|
layout="${longdate} ${message} ${newline} ${exception}" />
|
|
</targets>
|
|
|
|
<rules>
|
|
<logger name="*" minlevel="Error" writeTo="logfile" />
|
|
</rules>
|
|
</nlog> |