Remove debug printout
authorBrian Aker <brian@tangent.org>
Sun, 27 May 2012 02:53:46 +0000 (22:53 -0400)
committerBrian Aker <brian@tangent.org>
Sun, 27 May 2012 02:53:46 +0000 (22:53 -0400)
libtest/has.cc

index 7cc933704bbfa5cd6d3d20bb6c07a971cfc4c89a..52e1d405b26f90a91e6f70c711c61332ba34dea0 100644 (file)
@@ -124,12 +124,10 @@ bool has_memcached()
     }
     arg_buffer << MEMCACHED_BINARY;
 
-    std::cout << "Value: " << arg_buffer.str() << std::endl;
     if (access(arg_buffer.str().c_str(), X_OK) == 0)
     {
       return true;
     }
-    std::cout << "Access was not 0 : " << strerror(errno) << std::endl;
   }
 
   return false;