Index: trunk/src/tmcsim/cadsimulator/CADServer.java
===================================================================
--- trunk/src/tmcsim/cadsimulator/CADServer.java	(revision 407)
+++ trunk/src/tmcsim/cadsimulator/CADServer.java	(revision 448)
@@ -133,5 +133,9 @@
          *  Filepath to which is written the simulation time.
          */
-        ELAPSED_TIME_FILE("ElapsedTimeFile");
+        ELAPSED_TIME_FILE("ElapsedTimeFile"),
+        /**
+         *  Filepath to which is written the CADcomments log.
+         */
+        CAD_COMMENTS_LOG("CADcommentsLog");
         
         public String name;
@@ -255,5 +259,15 @@
                 throw new SimulationException(SimulationException.PROPERTY_MISSING_ERROR);
             }
-            theCoordinator = new Coordinator(theModel, simTimeFilename);
+            /** Load the CAD comments log filename from properties */
+            String commentLogname =
+                    cadServerProperties.getProperty(
+                    CAD_PROPERTIES.CAD_COMMENTS_LOG.name);
+            if (commentLogname == null)
+            {
+                cadSimLogger.logp(Level.SEVERE, "CADSimulator", "Constructor",
+                        propertiesFile + " missing property for " + CAD_PROPERTIES.CAD_COMMENTS_LOG.name);
+                throw new SimulationException(SimulationException.PROPERTY_MISSING_ERROR);
+            }
+            theCoordinator = new Coordinator(theModel, simTimeFilename, commentLogname);
 
             startRegistry(Integer.parseInt(
