Index: trunk/Ohana/src/opihi/pcontrol/GetJobOutput.c
===================================================================
--- trunk/Ohana/src/opihi/pcontrol/GetJobOutput.c	(revision 4573)
+++ trunk/Ohana/src/opihi/pcontrol/GetJobOutput.c	(revision 4575)
@@ -38,13 +38,13 @@
   switch (status) {
     case -1:
-      fprintf (stderr, "host %s is not responding\n", host[0].hostname);
+      if (VerboseMode()) fprintf (stderr, "host %s is not responding\n", host[0].hostname);
       return (FALSE);
 
     case 0:
-      fprintf (stderr, "host %s is down\n", host[0].hostname);
+      if (VerboseMode()) fprintf (stderr, "host %s is down\n", host[0].hostname);
       return (FALSE);
 
     default:
-      fprintf (stderr, "message received (GetJobOutput : %s)\n", cmd);  
+      if (VerboseMode()) fprintf (stderr, "message received (GetJobOutput : %s)\n", cmd);  
       /* drop extra bytes from pclient (not pclient:job) */
       buffer[0].Nbuffer = Nstart + Nbytes;
@@ -55,5 +55,5 @@
   }
 
-  fprintf (stderr, "programming error in GetJobOutput (should not reach here)\n");
+  fprintf (stderr, "programming error: should not reach here (GetJobOutput)\n");
   exit (1);
 }
