Index: trunk/psLib/test/sys/tst_psLogMsg.c
===================================================================
--- trunk/psLib/test/sys/tst_psLogMsg.c	(revision 4979)
+++ 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);
