Index: trunk/psLib/test/sys/tst_psLogMsg.c
===================================================================
--- trunk/psLib/test/sys/tst_psLogMsg.c	(revision 5071)
+++ trunk/psLib/test/sys/tst_psLogMsg.c	(revision 5072)
@@ -26,5 +26,5 @@
                               },
                               {
-                                  testLogMsg02, 2, "psLogSetLevel()", 0, false
+                                  testLogMsg02, 2, "psLogSet/GetLevel()", 0, false
                               },
                               {
@@ -35,5 +35,5 @@
                               },
                               {
-                                  testLogMsg05, 5, "psLogSetDestination()", 0, false
+                                  testLogMsg05, 5, "psLogSet/GetDestination()", 0, false
                               },
                               {
@@ -107,4 +107,5 @@
     psLogSetLevel(4);
     psLogMsg(__func__, 4, "This should  be displayed (level %d)\n", 4);
+    psLogMsg(__func__, 4, "This should display level 4 logging -> level %d\n", psLogGetLevel() );
 
     return 0;
@@ -189,4 +190,5 @@
     //    psLogSetDestination("none");
     psLogSetDestination(0);
+    printf("    File Descriptor = %d \n", psLogGetDestination() );
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
@@ -196,4 +198,5 @@
     //    psLogSetDestination("dest:stderr");
     psLogSetDestination(2);
+    printf("    File Descriptor = %d \n", psLogGetDestination() );
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
@@ -203,4 +206,5 @@
     //    psLogSetDestination("dest:stdout");
     psLogSetDestination(1);
+    printf("    File Descriptor = %d \n", psLogGetDestination() );
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
@@ -211,4 +215,5 @@
     //    psLogSetDestination("file:log.txt");
     psLogSetDestination(fd);
+    printf("    File Descriptor = %d \n", psLogGetDestination() );
     for (i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
Index: trunk/psLib/test/sys/verified/tst_psLogMsg.stderr
===================================================================
--- trunk/psLib/test/sys/verified/tst_psLogMsg.stderr	(revision 5071)
+++ trunk/psLib/test/sys/verified/tst_psLogMsg.stderr	(revision 5072)
@@ -35,5 +35,5 @@
 /***************************** TESTPOINT ******************************************\
 *             TestFile: tst_psLogMsg.c                                             *
-*            TestPoint: psLogMsg{psLogSetLevel()}                                  *
+*            TestPoint: psLogMsg{psLogSet/GetLevel()}                              *
 *             TestType: Positive                                                   *
 \**********************************************************************************/
@@ -61,6 +61,8 @@
 <DATE><TIME>|<HOST>|4|testLogMsg02
     This should  be displayed (level 4)
+<DATE><TIME>|<HOST>|4|testLogMsg02
+    This should display level 4 logging -> level 4
 
----> TESTPOINT PASSED (psLogMsg{psLogSetLevel()} | tst_psLogMsg.c)
+---> TESTPOINT PASSED (psLogMsg{psLogSet/GetLevel()} | tst_psLogMsg.c)
 
 /***************************** TESTPOINT ******************************************\
@@ -152,5 +154,5 @@
 /***************************** TESTPOINT ******************************************\
 *             TestFile: tst_psLogMsg.c                                             *
-*            TestPoint: psLogMsg{psLogSetDestination()}                            *
+*            TestPoint: psLogMsg{psLogSet/GetDestination()}                        *
 *             TestType: Positive                                                   *
 \**********************************************************************************/
@@ -165,5 +167,5 @@
     Hello World!  My level is 3
 
----> TESTPOINT PASSED (psLogMsg{psLogSetDestination()} | tst_psLogMsg.c)
+---> TESTPOINT PASSED (psLogMsg{psLogSet/GetDestination()} | tst_psLogMsg.c)
 
 /***************************** TESTPOINT ******************************************\
Index: trunk/psLib/test/sys/verified/tst_psLogMsg.stdout
===================================================================
--- trunk/psLib/test/sys/verified/tst_psLogMsg.stdout	(revision 5071)
+++ trunk/psLib/test/sys/verified/tst_psLogMsg.stdout	(revision 5072)
@@ -1,5 +1,8 @@
 --------------- psLogSetDestination(PS_LOG_NONE) ----------------
+    File Descriptor = 0 
 ------------- psLogSetDestination(PS_LOG_TO_STDERR) -------------
+    File Descriptor = 2 
 ------------- psLogSetDestination(PS_LOG_TO_STDOUT) -------------
+    File Descriptor = 1 
 <DATE><TIME>|<HOST>|A|testLogMsg05
     Hello World!  My level is 0
@@ -11,4 +14,5 @@
     Hello World!  My level is 3
 --------------- psLogSetDestination(file:log.txt) ---------------
+    File Descriptor = 3 
 --------------------- The Contents of log.txt -------------------
 <DATE><TIME>|<HOST>|A|testLogMsg05
