NLog.config 435 B

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