Index: trunk/webapps/unifiedlogmonitor.html
===================================================================
--- trunk/webapps/unifiedlogmonitor.html	(revision 442)
+++ trunk/webapps/unifiedlogmonitor.html	(revision 512)
@@ -12,4 +12,16 @@
    color: goldenrod
 }
+
+/* Color Code for unified logger */ 
+.CAD-log{
+    color: #00FFFF;
+}
+.Activity-log{
+    color: #32CD32;
+}
+.CMS-Activated{
+    color: #FFFF00;
+}
+
 /* Padding for table cells */
 td { padding-top:2px; padding-right:10px; padding-bottom:2px; padding-left:10px; }
@@ -48,6 +60,24 @@
         for (var singleRow = allRows.length-1; singleRow >= 0; singleRow--)
         {
-            table += '<tr>';
             var rowCells = allRows[singleRow].split(',');
+            var msg_type = "";
+
+            // trimming white space in the type of messages 
+            // ingore the emtpy line 
+            if (rowCells.length > 1) {
+                console.log("row cell " , rowCells[1]);
+                rowCells[1] = rowCells[1].trim();
+            }
+            // Implement ticket #190 
+            // Checking for the type of logging information 
+            if (rowCells[1] == "CAD log") {
+                msg_type = "class=\"CAD-log\"";
+            } else if (rowCells[1] == "Activity Log.") {
+                msg_type = "class=\"Activity-log\"";
+            } else if (rowCells[1] == "CMS Activated.") {
+                msg_type = "class=\"CMS-Activated\"";
+            } 
+            // add the message type class to that row 
+            table += '<tr ' + msg_type + '>';
             for (var rowCell = 0; rowCell < rowCells.length; rowCell++)
             {
