Changeset 549 in tmcsimulator for trunk/src/python/unifiedlogger/cms_watcher.py
- Timestamp:
- 12/26/2019 06:37:15 AM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/python/unifiedlogger/cms_watcher.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
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
Note: See TracChangeset
for help on using the changeset viewer.
