*** empty log message ***
diff --git a/dashboard/cvslogprocessor.php b/dashboard/cvslogprocessor.php
index e6b4107..3d158e1 100644
--- a/dashboard/cvslogprocessor.php
+++ b/dashboard/cvslogprocessor.php
@@ -1,20 +1,26 @@
-Version 8<p>
+Version 9<p>
 <?php
 
+/*
 require_once "/home/data/httpd/eclipse-php-classes/system/dbconnection_dashboard_rw.class.php";
 
 $db_connection = new DBConnectionDashboard();
 $db_handle = $db_connection->connect();
+*/
 
 // $query = "CREATE TABLE COMMITS ( ID int not null auto_increment, DATE datetime, 
 //		REPOSITORY text, FILENAME text, REVISION text, CHANGE_SIZE int, LOGIN text, 
 //		MESSAGE_SIZE int, primary key (ID) )";
 
 $filename = "/home/data/users/bfreeman/cvslogging/pending0.txt";
-echo $filename . "<br>\n";
+echo "filename=" . $filename . "<br>\n";
+echo "stat()=";
 print_r(stat($filename));
+echo "<br>\n";
 $lines = file( $filename );
-print_r($lines);
+if( $lines == FALSE ) {
+  echo "cannot open file<br>\n";
+}
 foreach( $lines as $line ) {
   list($year, $month, $day, $hour, $min, $sec, $repository, $user, $filepath, $revision) = explode( "|", $line );
   echo $line . "<br>\n";
@@ -38,8 +44,10 @@
  *   write a database line
  * 4: clear the pendingN.txt file
  */
- 
+
+/* 
 $db_handle = null;
 $db_connection = null;
+*/
 ?>
 End of page<p>