NLog.config 505 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="${longdate} ${threadid:padCharacter=0:padding=4:fixedLength=true} ${callsite:className=false:includeSourcePath=false:methodName=false:fileName=true}] ${message}"/>
  7. </targets>
  8. <rules>
  9. <logger name="*" minlevel="Trace" writeTo="file"/>
  10. </rules>
  11. </nlog>