You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
683 B
Plaintext

1 year ago
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
</configSections>
<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="${basedir}/logs/logfile_${date:format=yyyyMMdd}.log"-->
<target xsi:type="File" name="LogFile" fileName="${basedir}/logs/${shortdate}/${threadname}.log"/>
</targets>
. <rules>
<Logger name="LoggerFile" minlevel="Info" writeTo="LogFile"></Logger>
</rules>
</nlog>
</configuration>