Index: trunk/psLib/test/sysUtils/tst_psHash02.c
===================================================================
--- trunk/psLib/test/sysUtils/tst_psHash02.c	(revision 1018)
+++ trunk/psLib/test/sysUtils/tst_psHash02.c	(revision 1022)
@@ -3,5 +3,5 @@
     and retrieved correctly.
  
-    GUS: Add code to test whether duplicates are handled correctly (use a
+    NOTE: Add code to test whether duplicates are handled correctly (use a
     small hash table and lots of keys).
  *****************************************************************************/
Index: trunk/psLib/test/sysUtils/tst_psHash03.c
===================================================================
--- trunk/psLib/test/sysUtils/tst_psHash03.c	(revision 1018)
+++ trunk/psLib/test/sysUtils/tst_psHash03.c	(revision 1022)
@@ -2,5 +2,5 @@
     This code will test whether hash tables entries can be removed correctly.
  
-    GUS: Add code to test whether duplicates are handled correctly.
+    NOTE: Add code to test whether duplicates are handled correctly.
  *****************************************************************************/
 #include <stdio.h>
@@ -102,5 +102,5 @@
     while (myKeys[i] != NULL) {
         id = psHashRemove(myHashTable, myKeys[i], (void (*)(void *))IdFree);
-        // GUS: The psHashRemove() procedure removes the entry from the hash
+        // The psHashRemove() procedure removes the entry from the hash
         // table, but does not delete the data.  The following is necessary
         // to delete the data as well (which is returned from the call).
Index: trunk/psLib/test/sysUtils/tst_psLogMsg02.c
===================================================================
--- trunk/psLib/test/sysUtils/tst_psLogMsg02.c	(revision 1018)
+++ trunk/psLib/test/sysUtils/tst_psLogMsg02.c	(revision 1022)
@@ -67,4 +67,24 @@
                 testStatus);
 
+
+
+
+    printPositiveTestHeader(stdout,
+                            "psLogMsg functions",
+                            "Output Format");
+
+    psLogMsg("Under 15 chars", 0, "Hello World!\n");
+    psLogMsg("This string is more than 15 chars", 0, "Hello World!\n");
+    psLogMsg(__func__, 0, "Line #1\n");
+    psLogMsg(__func__, 0, "Line #2\n");
+    psLogMsg(__func__, 0, "Line #3");
+    psLogMsg(__func__, 0, "Line #4");
+
+    printFooter(stdout,
+                "psLogMsg functions",
+                "Output Format",
+                testStatus);
+
+
     if (psMemCheckLeaks(currentId,NULL,NULL) != 0) {
         psAbort(__func__,"Memory Leaks!");
