From 562a89a7fddf3020b18593fa97c51e18dcd5752e Mon Sep 17 00:00:00 2001
From: Markus Quaritsch <markus.quaritsch@tugraz.at>
Date: Mon, 2 Nov 2015 17:40:43 +0100
Subject: [PATCH] add threadId in logging output

---
 VectoConsole/App.config | 42 +++++++++++++++++++++--------------------
 1 file changed, 22 insertions(+), 20 deletions(-)

diff --git a/VectoConsole/App.config b/VectoConsole/App.config
index b9fc82b72b..6fcb136b5b 100644
--- a/VectoConsole/App.config
+++ b/VectoConsole/App.config
@@ -1,23 +1,25 @@
 <?xml version="1.0" encoding="utf-8"?>
+
 <configuration>
-  <configSections>
-	<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" />
-  </configSections>
-  <startup>
-	<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
-  </startup>
-  <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
-      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-      xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
-      autoReload="true"
-      throwExceptions="false"
-      internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log" >
-	<targets>
-	  <target xsi:type="Console" name="ConsoleLogger" error="true" />
-	  <target xsi:type="File" name="LogFile" fileName="${basedir}/logs/log.txt" layout="${longdate} [${processid}@${machinename}] ${callsite} ${level:uppercase=true}: ${message}" />
-	</targets>
-	<rules>
-	  <logger name="*" minlevel="Info" writeTo="LogFile" />
-	</rules>
-  </nlog>
+	<configSections>
+		<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" />
+	</configSections>
+	<startup>
+		<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
+	</startup>
+	<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
+		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+		xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
+		autoReload="true"
+		throwExceptions="false"
+		internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">
+		<targets>
+			<target xsi:type="Console" name="ConsoleLogger" error="true" />
+			<target xsi:type="File" name="LogFile" fileName="${basedir}/logs/log.txt"
+					layout="${longdate} [${processid}:${threadid}@${machinename}] ${callsite} ${level:uppercase=true}: ${message}" />
+		</targets>
+		<rules>
+			<logger name="*" minlevel="Info" writeTo="LogFile" />
+		</rules>
+	</nlog>
 </configuration>
\ No newline at end of file
-- 
GitLab