NLog.config 457 B

12345678910111213
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <targets>
  4. <target name="file" xsi:type="File"
  5. fileName="${basedir}/Log.txt"
  6. deleteOldFileOnStartup="true"
  7. layout="${longdate} ${threadid:padCharacter=0:padding=4:fixedLength=true} ${message}" />
  8. </targets>
  9. <rules>
  10. <logger name="*" minlevel="Debug" writeTo="file" />
  11. </rules>
  12. </nlog>