18 lines
		
	
	
		
			690 B
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			690 B
		
	
	
	
		
			XML
		
	
	
| <?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"
 | |
|       autoReload="true"
 | |
|       throwExceptions="false"
 | |
|       internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">
 | |
| 	<variable name="myvar" value="myvalue"/>
 | |
| 
 | |
| 	<targets>
 | |
| 
 | |
| 		<target xsi:type="file" name="File" fileName="${basedir}/logs/${shortdate}/${level}.log"
 | |
| 		        layout="${longdate}||${level}||${logger}||${message}||${exception:format=ToString:innerFormat=ToString:maxInnerExceptionLevel=10:separator=\r\n}||end" />
 | |
| 	</targets>
 | |
| 
 | |
| 	<rules>
 | |
| 		<logger name="*" minlevel="Debug" writeTo="file" />
 | |
| 	</rules>
 | |
| </nlog> |