2023-04-17 23:38:44 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<configuration>
|
|
|
|
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
autoReload="true" internalLogLevel="Info">
|
|
|
|
|
|
|
|
<targets>
|
2023-05-02 10:17:53 +04:00
|
|
|
<target xsi:type="File" name="tofile" fileName="C:\logs\example.log" />
|
2023-04-17 23:38:44 +04:00
|
|
|
</targets>
|
|
|
|
|
|
|
|
<rules>
|
|
|
|
<logger name="*" minlevel="Debug" writeTo="tofile" />
|
|
|
|
</rules>
|
|
|
|
</nlog>
|
2023-05-02 10:17:53 +04:00
|
|
|
</configuration>
|
|
|
|
|