You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
481 B
17 lines
481 B
<?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"
|
|
throwConfigExceptions="true">
|
|
|
|
<targets async="true">
|
|
<target name="logfile" xsi:type="File" fileName="log.txt" />
|
|
<target name="logdebug" xsi:type="Debug" />
|
|
</targets>
|
|
|
|
<rules>
|
|
<logger name="*" minlevel="Info" writeTo="logdebug"/>
|
|
<logger name="*" minlevel="Warn" writeTo="logfile"/>
|
|
</rules>
|
|
|
|
|
|
</nlog> |