Index: trunk/bin/systemstart_systest.sh
===================================================================
--- trunk/bin/systemstart_systest.sh	(revision 669)
+++ trunk/bin/systemstart_systest.sh	(revision 674)
@@ -12,5 +12,5 @@
 java -DPROP_FILE=cad_server_systest.properties -jar deploy/CADserver.jar &
 sleep 7
-python deploy/unifiedlogger.zip
+python deploy/unifiedlogger.zip &
 sleep 2
 java -jar deploy/SimManager.jar system_test_script.xml &
Index: trunk/bin/resetlogs_dev.sh
===================================================================
--- trunk/bin/resetlogs_dev.sh	(revision 674)
+++ trunk/bin/resetlogs_dev.sh	(revision 674)
@@ -0,0 +1,6 @@
+# Reset log files between sessions
+
+touch ../webapps/dynamicdata/CADcomments.log
+touch ../webapps/dynamicdata/unifiedlog.csv
+cp ../webapps/dynamicdata/cms_messages_empty.json ../webapps/dynamicdata/cms_messages.json
+cp ../webapps/dynamicdata/har_messages_empty.json ../webapps/dynamicdata/har_messages.json
Index: trunk/bin/postsession_logmerge.bash
===================================================================
--- trunk/bin/postsession_logmerge.bash	(revision 674)
+++ trunk/bin/postsession_logmerge.bash	(revision 674)
@@ -0,0 +1,24 @@
+# Merge log files and sort by timestamp
+# Invoke from 'bin' folder
+# TODO: Add error handling - missing files, not executed from 'webapps', ... 
+
+# Change to trunk folder
+cd ..   
+
+# 1. Runs a python program named "extract_caddetails" 
+# to extract CAD DETAIL lines from incident_script.xml
+# and creates an output file "caddetails.csv" 
+
+PYTHONPATH=webapps/unifiedlogger.zip  python -m extract_caddetails
+
+# 2. Define a variable for the directory containing the data files
+dir="webapps/dynamicdata"
+
+# 3. Merge three files: unified log, cad details, LCSlogfile, and evaluation ratings
+# then sort them by timestamp (reverse chronological).  
+# Final result placed in "sessionlog.csv"
+cat $dir/unifiedlog.csv $dir/caddetails.csv $dir/evalratings.csv $dir/LCSlogfile.txt | sort > $dir/sessionlog.csv
+
+# 4. Next, launch the webserver and browse to localhost:8080/sessionlogdisplay.html 
+#    to show a nicely formatted version of the results.
+firefox localhost:8080/sessionlogdisplay.html  &
