Index: trunk/Ohana/src/opihi/pcontrol/rconnect.c
===================================================================
--- trunk/Ohana/src/opihi/pcontrol/rconnect.c	(revision 4573)
+++ trunk/Ohana/src/opihi/pcontrol/rconnect.c	(revision 4575)
@@ -27,9 +27,8 @@
   argv[2] = shell;
   argv[3] = 0;
-  fprintf (stderr, "%s %s %s\n", argv[0], argv[1], argv[2]);
 
   pid = fork ();
   if (!pid) { /* must be child process */
-    fprintf (stderr, "starting remote connection to %s...", hostname);
+    if (VerboseMode()) fprintf (stderr, "starting remote connection to %s...", hostname);
 
     /* close the other ends of the pipes */
@@ -79,13 +78,12 @@
     status = ReadtoIOBuffer (&buffer, stdout_fd[0]);
     p = memstr (buffer.buffer, "CONNECTED", buffer.Nbuffer);
-    /* fprintf (stderr, "%d  %d  %s\n", i, buffer.Nbuffer, buffer.buffer); */
     usleep (20000);
   }
-  fprintf (stderr, "%d cycles to connect\n", i);
+  if (VerboseMode()) fprintf (stderr, "%d cycles to connect\n", i);
   if (status == 0) goto pipe_error;
   if (status == -1) goto io_error;
   FreeIOBuffer (&buffer);
 
-  fprintf (stderr, "Connected\n");
+  if (VerboseMode()) fprintf (stderr, "Connected\n");
 
   stdio[0] = stdin_fd[1];
@@ -100,5 +98,5 @@
 
 io_error:
-  fprintf (stderr, "timeout while connecting\n");
+  if (VerboseMode()) fprintf (stderr, "timeout while connecting\n");
   goto close_pipes;
 
