Index: trunk/psLib/test/sysUtils/tst_psLogMsg02.c
===================================================================
--- trunk/psLib/test/sysUtils/tst_psLogMsg02.c	(revision 852)
+++ trunk/psLib/test/sysUtils/tst_psLogMsg02.c	(revision 963)
@@ -17,45 +17,45 @@
     printPositiveTestHeader(stdout,
                             "psLogMsg functions",
-                            "psSetLogFormat()");
+                            "psLogSetFormat()");
 
 
-    printf("------------- psSetLogFormat() -------------\n");
-    psSetLogFormat("");
+    printf("------------- psLogSetFormat() -------------\n");
+    psLogSetFormat("");
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
     }
 
-    printf("------------- psSetLogFormat(T) -------------\n");
-    psSetLogFormat("T");
+    printf("------------- psLogSetFormat(T) -------------\n");
+    psLogSetFormat("T");
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
     }
 
-    printf("------------- psSetLogFormat(H) -------------\n");
-    psSetLogFormat("TH");
+    printf("------------- psLogSetFormat(H) -------------\n");
+    psLogSetFormat("TH");
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
     }
 
-    printf("------------- psSetLogFormat(L) -------------\n");
-    psSetLogFormat("L");
+    printf("------------- psLogSetFormat(L) -------------\n");
+    psLogSetFormat("L");
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
     }
 
-    printf("------------- psSetLogFormat(N) -------------\n");
-    psSetLogFormat("N");
+    printf("------------- psLogSetFormat(N) -------------\n");
+    psLogSetFormat("N");
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
     }
 
-    printf("------------- psSetLogFormat(M) -------------\n");
-    psSetLogFormat("M");
+    printf("------------- psLogSetFormat(M) -------------\n");
+    psLogSetFormat("M");
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
     }
 
-    printf("------------- psSetLogFormat(THLNM) -------------\n");
-    psSetLogFormat("THLNM");
+    printf("------------- psLogSetFormat(THLNM) -------------\n");
+    psLogSetFormat("THLNM");
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
@@ -64,5 +64,5 @@
     printFooter(stdout,
                 "psLogMsg functions",
-                "psSetLogFormat()",
+                "psLogSetFormat()",
                 testStatus);
 
