Index: trunk/src/python/unifiedlogger/activitylog_watcher.py
===================================================================
--- trunk/src/python/unifiedlogger/activitylog_watcher.py	(revision 478)
+++ trunk/src/python/unifiedlogger/activitylog_watcher.py	(revision 479)
@@ -1,4 +1,4 @@
 import json, time, ConfigParser
-from copy import deepcopy
+#from copy import deepcopy
 
 # Incident Activity log Watcher
@@ -24,11 +24,12 @@
     config = ConfigParser.ConfigParser()
     config.read('config/logging_service.cfg')
-    logfilepath  = config.get('Paths', 'UnifiedLogPath')
+    logfilepath = config.get('Paths', 'ActivityLogPath')
+    logfilename = "data.json"   #"IncidentActivity.log"
+    lines = []
     
-    lines = []
     try:
-        json_file = open (logfilepath + "IncidentActivity.log",'r')
+        json_file = open (logfilepath + logfilename,'r')
     except IOError:
-        print "Error: missing "+logfilepath+"IncidentActivity.log file."
+        print "Error: missing "+logfilepath+logfilename+" file."
     else:
         jsonData=json_file.read()
