This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<!-- | |
See http://nlog-project.org/wiki/Configuration_file | |
for information on customizing logging rules and outputs. | |
--> | |
<targets> | |
<!-- add your targets here --> | |
<target xsi:type="File" name="f" fileName="${basedir}/logs/NLogExperiment.log" | |
archiveEvery="Day" | |
archiveFileName="logs/NLogExperiment.{#}.log" | |
archiveNumbering="Date" | |
archiveDateFormat="yyyyMMdd" | |
layout="${longdate} ${uppercase:${level}} ${message} ${exception:format=ToString:maxInnerExceptionLevel=9:innerExceptionSeparator=;}" /> | |
</targets> | |
<rules> | |
<!-- add your logging rules here --> | |
<logger name="*" minlevel="Trace" writeTo="f" /> | |
</rules> | |
</nlog> |