PIbd-21_Krasnikov_Lab1.base/WinFormsApp1/nlog.config
2022-12-23 00:48:39 +04:00

13 lines
453 B
XML

<?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>
<target xsi:type="File" name ="tofile" fileName ="tankerlog-${shortdate}.log"/>
</targets>
<rules>
<logger name ="*" minlevel ="Debug" writeTo ="toFile" />
</rules>
</nlog>
</configuration>