Index: /trunk/src/tmcsim/cadsimulator/viewer/SimulationStatusPanel.java
===================================================================
--- /trunk/src/tmcsim/cadsimulator/viewer/SimulationStatusPanel.java	(revision 2)
+++ /trunk/src/tmcsim/cadsimulator/viewer/SimulationStatusPanel.java	(revision 5)
@@ -393,10 +393,11 @@
         infoMessagesTA = new JTextArea(6, 30);
         infoMessagesTA.setEditable(false);
-        infoMessagesPane = new JScrollPane(errorMessagesTA);
+        infoMessagesTA.setName("infoMessagesTA");
+        infoMessagesPane = new JScrollPane(infoMessagesTA);
         infoMessagesPane.setPreferredSize(new Dimension(300, 100));
         
         infoMessagesPane.setBorder(BorderFactory.createTitledBorder(
                 BorderFactory.createEtchedBorder(EtchedBorder.LOWERED), "Info Messages"));  
-
+        infoMessagesPane.setName("infoMessagesPane");
         
         errorMessagesTA = new JTextArea(6, 30);
Index: /trunk/src/tmcsim/cadsimulator/CADSimulator.java
===================================================================
--- /trunk/src/tmcsim/cadsimulator/CADSimulator.java	(revision 2)
+++ /trunk/src/tmcsim/cadsimulator/CADSimulator.java	(revision 5)
@@ -70,5 +70,5 @@
     
     /** Error logger. */
-    private static Logger cadSimLogger = Logger.getLogger("tmcsim.simulationmanager");
+    private static Logger cadSimLogger = Logger.getLogger("tmcsim.cadsimulator");
 
     /**
@@ -161,5 +161,5 @@
         //Create the Coordinator and register it for RMI communicator.  Start the
         //CAD Simulator Socket Handler to begin to accept connections from CAD Clients.
-        try {         
+        try {
             theViewer             = new CADSimulatorViewer();
             theCoordinator        = new Coordinator();
Index: /trunk/test/tmcsim/cadsimulator/CADSimulatorTest.java
===================================================================
--- /trunk/test/tmcsim/cadsimulator/CADSimulatorTest.java	(revision 4)
+++ /trunk/test/tmcsim/cadsimulator/CADSimulatorTest.java	(revision 5)
@@ -2,4 +2,7 @@
 
 import java.rmi.RemoteException;
+import java.util.logging.Level;
+import java.util.logging.Logger;
+import javax.swing.JScrollPane;
 import static junit.framework.Assert.assertEquals;
 import static junit.framework.Assert.fail;
@@ -67,5 +70,6 @@
                     {
                         app = new CADSimulator(System.getProperty("CAD_SIM_PROPERTIES"));
-                    } catch (Exception e)
+                    }
+                    catch (Exception e)
                     {
                         fail("Couldn't launch CADSimulator");
@@ -73,5 +77,6 @@
                 }
             });
-        } else
+        }
+        else
         {
             fail("CAD_SIM_PROPERTIES system property not defined.");
@@ -90,24 +95,22 @@
         app.theCoordinator.registerForCallback(ci);
         assertEquals("2", terminals.getText().trim());
-        
+
         SimulationManagerInterface si = new CADSimulatorTest.FakeSimMgr();
         app.theCoordinator.registerForCallback(si);
         assertEquals("Yes", mainPanel.getTextBox("managerConnectedTF").getText().trim());
-        
+
+        Logger cadSimLogger = Logger.getLogger("tmcsim.cadsimulator");
+        cadSimLogger.logp(Level.INFO, "", "", "Sample Info Message.");
+
+        Panel infoPane = mainPanel.getPanel("InfoMessagesPane");
+        TextBox infoText = infoPane.getTextBox("infoMessagesTA");
+        assertEquals(". = Sample Info Message.\n", infoText.getText());
+
         app = null;
-//        app.theViewer.dispose();
-//        Window confirmPopup = null;
-//        confirmPopup = WindowInterceptor.run(new Trigger()
-//        {
-//            public void run()
-//            {
-//                app.theViewer.closeViewer();
-//            }
-//        });
-//        confirmPopup.getButton("OK").click();
     }
 
-    class FakeClient implements CADClientInterface 
+    class FakeClient implements CADClientInterface
     {
+
         @Override
         public void refresh() throws RemoteException
@@ -115,8 +118,9 @@
             throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
         }
-    
     }
+
     class FakeSimMgr implements SimulationManagerInterface
     {
+
         @Override
         public void tick(long theTime) throws RemoteException
@@ -160,7 +164,4 @@
             throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
         }
-    
     }
-    
-    
 }
