NLog.config 521 B

1234567891011
  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" fileName="${basedir}/Log.txt"
  5. layout="${longdate} ${threadid:padCharacter=0:padding=4:fixedLength=true} ${callsite:className=false:includeSourcePath=false:methodName=false:fileName=true} ${message}" />
  6. </targets>
  7. <rules>
  8. <logger name="*" minlevel="Trace" writeTo="file" />
  9. </rules>
  10. </nlog>