Changeset 549 in tmcsimulator
- Timestamp:
- 12/26/2019 06:37:15 AM (6 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
-
python/unifiedlogger/activitylog_watcher.py (modified) (1 diff)
-
python/unifiedlogger/cms_watcher.py (modified) (1 diff)
-
python/unifiedlogger/wing_project.wpr (modified) (1 diff)
-
tmcsim/application.properties (modified) (1 diff)
-
tmcsim/cadsimulator/Coordinator.java (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/python/unifiedlogger/activitylog_watcher.py
r513 r549 69 69 code = item[4].replace(',','') 70 70 msg = item[5].replace(',','') 71 desiredFields = "Activity Log .,"+name+"," + incident_num + " " + code+" "+msg71 desiredFields = "Activity Log,"+name+"," + incident_num + " " + code+" "+msg 72 72 # Append to results list 73 73 resultList.append(desiredFields) -
trunk/src/python/unifiedlogger/cms_watcher.py
r440 r549 71 71 # Is a new message activated? 72 72 if isEmpty(prevList[idx]) and isFull(currList[idx]): 73 results.append("CMS Activated .," + locationMap[idList[idx]] + ", '" + currList[idx] +"'")73 results.append("CMS Activated," + locationMap[idList[idx]] + ", '" + currList[idx] +"'") 74 74 # Is an existing message turned off? 75 75 if isEmpty(currList[idx]) and isFull(prevList[idx]): 76 results.append("CMS Deactivated ., " + locationMap[idList[idx]])76 results.append("CMS Deactivated, " + locationMap[idList[idx]]) 77 77 # Did a message change? 78 78 if isFull(currList[idx]) and isFull(prevList[idx]) and currList[idx] != prevList[idx]: 79 results.append("CMS Updated ., " + locationMap[idList[idx]] + ", '" + currList[idx] +"'")79 results.append("CMS Updated, " + locationMap[idList[idx]] + ", '" + currList[idx] +"'") 80 80 81 81 # Save the current list as previous -
trunk/src/python/unifiedlogger/wing_project.wpr
r545 r549 470 470 (loc('extend_unifiedlogger.py'), 471 471 {'attrib-starts': [], 472 'code-line': " # if t"\ 473 "here's detail field add it to the entries \n", 474 'first-line': 33L, 472 'code-line': 'out_file.close()\n', 473 'first-line': 51L, 475 474 'folded-linenos': [], 476 'sel-line': 56L,477 'sel-line-start': 2592L,478 'selection_end': 2641L,479 'selection_start': 2641L,475 'sel-line': 69L, 476 'sel-line-start': 3068L, 477 'selection_end': 3085L, 478 'selection_start': 3068L, 480 479 'zoom': 0L}), 481 480 (loc('../../../config/logging_service.cfg'), -
trunk/src/tmcsim/application.properties
r532 r549 1 # Wed, 27 Nov 2019 09:34:13-08001 #Sat, 07 Dec 2019 09:48:16 -0800 2 2 3 Application.revision=5 313 Application.revision=540 4 4 5 5 Application.buildnumber=199 -
trunk/src/tmcsim/cadsimulator/Coordinator.java
r529 r549 279 279 final DateFormat timeFormat = new SimpleDateFormat("HH:mm:ss"); 280 280 String logItem = timeFormat.format(new Date()) 281 + " CAD log, "281 + " CAD Log, " 282 282 + "Simulation Started at " 283 283 + datetimeFmt.format(new Date()) … … 291 291 final DateFormat timeFormat = new SimpleDateFormat("HH:mm:ss"); 292 292 simMgrMsgLog.add(timeFormat.format(new Date()) 293 + " CAD log, "293 + " CAD Log, " 294 294 + "Simulation Paused.\n"); 295 295 // pausing the simulation will halt writing of CAD log, … … 869 869 {//17:03:19 CAD Log Entry, Incident #187, Sharon: REQUEST EXTRA ANCHOVIES 870 870 output.append(timestamp); 871 output.append(" CAD log, ");871 output.append(" CAD Log, "); 872 872 output.append("Incident #" + incident.logNum + ", "); 873 873 output.append(initials + ": ");
Note: See TracChangeset
for help on using the changeset viewer.
