Index: /trunk/psLib/test/sysUtils/tst_psLogMsg00.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psLogMsg00.c	(revision 962)
+++ /trunk/psLib/test/sysUtils/tst_psLogMsg00.c	(revision 963)
@@ -34,5 +34,5 @@
     // should actually be displayed.
     for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d %f %s\n", i,
+        myLogMsg(__func__, i, "Hello World!  My level is %d %f %s\n", i,
                  (float) i, "beep beep");
     }
@@ -52,5 +52,5 @@
     // should actually be displayed.
     for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d %f %s\n", i,
+        myLogMsg(__func__, i, "Hello World!  My level is %d %f %s\n", i,
                  (float) i, "beep beep");
     }
Index: /trunk/psLib/test/sysUtils/tst_psLogMsg01.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psLogMsg01.c	(revision 962)
+++ /trunk/psLib/test/sysUtils/tst_psLogMsg01.c	(revision 963)
@@ -17,7 +17,7 @@
     printPositiveTestHeader(stdout,
                             "psLogMsg functions",
-                            "psSetLogLevel()");
+                            "psLogSetLevel()");
 
-    psSetLogLevel(9);
+    psLogSetLevel(9);
     // Send a log messages for levels 0:9.
     for (i=0;i<10;i++) {
@@ -25,12 +25,12 @@
     }
 
-    psSetLogLevel(5);
+    psLogSetLevel(5);
     psLogMsg(__func__, 6, "This should not be displayed (level %d)\n", 6);
-    psSetLogLevel(4);
+    psLogSetLevel(4);
     psLogMsg(__func__, 4, "This should  be displayed (level %d)\n", 4);
 
     printFooter(stdout,
                 "psLogMsg functions",
-                "psSetLogLevel()",
+                "psLogSetLevel()",
                 testStatus);
 
Index: /trunk/psLib/test/sysUtils/tst_psLogMsg02.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psLogMsg02.c	(revision 962)
+++ /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);
 
Index: /trunk/psLib/test/sysUtils/tst_psLogMsg03.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psLogMsg03.c	(revision 962)
+++ /trunk/psLib/test/sysUtils/tst_psLogMsg03.c	(revision 963)
@@ -18,20 +18,20 @@
     printPositiveTestHeader(stdout,
                             "psLogMsg functions",
-                            "psSetLogDestination()");
+                            "psLogSetDestination()");
 
-    printf("------------- psSetLogDestination(PS_LOG_NONE) -------------\n");
-    psSetLogDestination(PS_LOG_NONE);
+    printf("------------- psLogSetDestination(PS_LOG_NONE) -------------\n");
+    psLogSetDestination(PS_LOG_NONE);
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
     }
 
-    printf("------------- psSetLogDestination(PS_LOG_TO_STDERR) -------------\n");
-    psSetLogDestination(PS_LOG_TO_STDERR);
+    printf("------------- psLogSetDestination(PS_LOG_TO_STDERR) -------------\n");
+    psLogSetDestination(PS_LOG_TO_STDERR);
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
     }
 
-    printf("------------- psSetLogDestination(PS_LOG_TO_STDOUT) -------------\n");
-    psSetLogDestination(PS_LOG_TO_STDOUT);
+    printf("------------- psLogSetDestination(PS_LOG_TO_STDOUT) -------------\n");
+    psLogSetDestination(PS_LOG_TO_STDOUT);
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
@@ -40,5 +40,5 @@
     printFooter(stdout,
                 "psLogMsg functions",
-                "psSetLogDestination()",
+                "psLogSetDestination()",
                 testStatus);
 
Index: /trunk/psLib/test/sysUtils/verified/tst_psLogMsg01.stdout
===================================================================
--- /trunk/psLib/test/sysUtils/verified/tst_psLogMsg01.stdout	(revision 962)
+++ /trunk/psLib/test/sysUtils/verified/tst_psLogMsg01.stdout	(revision 963)
@@ -1,9 +1,9 @@
 /----------------------------- TESTPOINT ------------------------------------------\
 |             TestFile: tst_psLogMsg01.c                                           |
-|            TestPoint: psLogMsg functions{psSetLogLevel()}                        |
+|            TestPoint: psLogMsg functions{psLogSetLevel()}                        |
 |             TestType: Positive                                                   |
 \----------------------------------------------------------------------------------/
 
 
----> TESTPOINT PASSED (psLogMsg functions{psSetLogLevel()} | tst_psLogMsg01.c)
+---> TESTPOINT PASSED (psLogMsg functions{psLogSetLevel()} | tst_psLogMsg01.c)
 
Index: /trunk/psLib/test/sysUtils/verified/tst_psLogMsg02.stdout
===================================================================
--- /trunk/psLib/test/sysUtils/verified/tst_psLogMsg02.stdout	(revision 962)
+++ /trunk/psLib/test/sysUtils/verified/tst_psLogMsg02.stdout	(revision 963)
@@ -1,16 +1,16 @@
 /----------------------------- TESTPOINT ------------------------------------------\
 |             TestFile: tst_psLogMsg02.c                                           |
-|            TestPoint: psLogMsg functions{psSetLogFormat()}                       |
+|            TestPoint: psLogMsg functions{psLogSetFormat()}                       |
 |             TestType: Positive                                                   |
 \----------------------------------------------------------------------------------/
 
-------------- psSetLogFormat() -------------
-------------- psSetLogFormat(T) -------------
-------------- psSetLogFormat(H) -------------
-------------- psSetLogFormat(L) -------------
-------------- psSetLogFormat(N) -------------
-------------- psSetLogFormat(M) -------------
-------------- psSetLogFormat(THLNM) -------------
+------------- psLogSetFormat() -------------
+------------- psLogSetFormat(T) -------------
+------------- psLogSetFormat(H) -------------
+------------- psLogSetFormat(L) -------------
+------------- psLogSetFormat(N) -------------
+------------- psLogSetFormat(M) -------------
+------------- psLogSetFormat(THLNM) -------------
 
----> TESTPOINT PASSED (psLogMsg functions{psSetLogFormat()} | tst_psLogMsg02.c)
+---> TESTPOINT PASSED (psLogMsg functions{psLogSetFormat()} | tst_psLogMsg02.c)
 
Index: /trunk/psLib/test/sysUtils/verified/tst_psLogMsg03.stdout
===================================================================
--- /trunk/psLib/test/sysUtils/verified/tst_psLogMsg03.stdout	(revision 962)
+++ /trunk/psLib/test/sysUtils/verified/tst_psLogMsg03.stdout	(revision 963)
@@ -1,11 +1,11 @@
 /----------------------------- TESTPOINT ------------------------------------------\
 |             TestFile: tst_psLogMsg03.c                                           |
-|            TestPoint: psLogMsg functions{psSetLogDestination()}                  |
+|            TestPoint: psLogMsg functions{psLogSetDestination()}                  |
 |             TestType: Positive                                                   |
 \----------------------------------------------------------------------------------/
 
-------------- psSetLogDestination(PS_LOG_NONE) -------------
-------------- psSetLogDestination(PS_LOG_TO_STDERR) -------------
-------------- psSetLogDestination(PS_LOG_TO_STDOUT) -------------
+------------- psLogSetDestination(PS_LOG_NONE) -------------
+------------- psLogSetDestination(PS_LOG_TO_STDERR) -------------
+------------- psLogSetDestination(PS_LOG_TO_STDOUT) -------------
  <DATE> <TIME> <HOST> |A|main           |
 Hello World!  My level is 0
@@ -17,4 +17,4 @@
 Hello World!  My level is 3
 
----> TESTPOINT PASSED (psLogMsg functions{psSetLogDestination()} | tst_psLogMsg03.c)
+---> TESTPOINT PASSED (psLogMsg functions{psLogSetDestination()} | tst_psLogMsg03.c)
 
