Index: trunk/Ohana/src/opihi/pcontrol/CheckHost.c
===================================================================
--- trunk/Ohana/src/opihi/pcontrol/CheckHost.c	(revision 4450)
+++ trunk/Ohana/src/opihi/pcontrol/CheckHost.c	(revision 4575)
@@ -12,5 +12,5 @@
   switch (status) {
     case 0:
-      fprintf (stderr, "host %s is down\n", host[0].hostname);
+      if (VerboseMode()) fprintf (stderr, "host %s is down\n", host[0].hostname);
 
       /* if host has a job, job is dead, push to Pending */
@@ -33,5 +33,5 @@
       
     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);
       /*** do we mark this in some way (HUNG) ? ***/
       PutHost (host, host[0].stack, STACK_BOTTOM);
@@ -40,10 +40,10 @@
 
     default:
-      /* fprintf (stderr, "host %s is alive\n", host[0].hostname); */
+      if (VerboseMode()) fprintf (stderr, "host %s is alive\n", host[0].hostname);
       PutHost (host, host[0].stack, STACK_BOTTOM);
       FreeIOBuffer (&buffer);
       return (TRUE);
   }
-  fprintf (stderr, "programming error (Check Host)\n"); 
+  fprintf (stderr, "programming error: should not reach here (Check Host)\n"); 
   return (FALSE);
 }
