Index: /trunk/Ohana/src/opihi/pcontrol/CheckDoneHost.c
===================================================================
--- /trunk/Ohana/src/opihi/pcontrol/CheckDoneHost.c	(revision 10656)
+++ /trunk/Ohana/src/opihi/pcontrol/CheckDoneHost.c	(revision 10657)
@@ -1,3 +1,4 @@
 # include "pcontrol.h"
+# define DEBUG 1
 
 int CheckDoneHost (Host *host) {
@@ -16,5 +17,5 @@
   switch (status) {
     case PCLIENT_DOWN:
-      if (VerboseMode()) gprint (GP_ERR, "host %s is down\n", host[0].hostname);
+      if (DEBUG || VerboseMode()) gprint (GP_ERR, "host %s is down\n", host[0].hostname);
       /* DONE host does not have an incomplete job */
       HarvestHost (host[0].pid);
@@ -27,5 +28,5 @@
       // XXX should this be DONE or DOWN?/
       PutHost (host, PCONTROL_HOST_DONE, STACK_BOTTOM);
-      if (VerboseMode()) gprint (GP_ERR, "host %s is not responding\n", host[0].hostname);
+      if (DEBUG || VerboseMode()) gprint (GP_ERR, "host %s is not responding\n", host[0].hostname);
       FreeIOBuffer (&buffer);
       return (FALSE);
@@ -49,5 +50,5 @@
       
     case 0:
-      if (VerboseMode()) gprint (GP_ERR, "reset failed\n");
+      if (DEBUG || VerboseMode()) gprint (GP_ERR, "reset failed\n");
       PutHost (host, PCONTROL_HOST_DONE, STACK_BOTTOM);
       FreeIOBuffer (&buffer);
@@ -56,5 +57,5 @@
     case 1:
     case 2:
-      if (VerboseMode()) gprint (GP_ERR, "successful reset\n");
+      if (DEBUG || VerboseMode()) gprint (GP_ERR, "successful reset\n");
       PutHost (host, PCONTROL_HOST_IDLE, STACK_BOTTOM);
       FreeIOBuffer (&buffer);
