1
0
Fork 0

Take some couts out to reproduce bug.

This commit is contained in:
Max Neunhoeffer 2014-12-03 11:17:23 +01:00
parent 8f1dd637c6
commit 4b099281aa
1 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ namespace triagens {
if (_connection->isConnected()) {
_state = FINISHED;
}
std::cout << "Simple: contructor done, state: " << _state << std::endl;
// XXX std::cout << "Simple: contructor done, state: " << _state << std::endl;
}
SimpleHttpClient::~SimpleHttpClient () {
@ -95,7 +95,7 @@ namespace triagens {
// ensure connection has not yet been invalidated
TRI_ASSERT(_connection != nullptr);
std::cout << "Simple: close called" << std::endl;
// XXX std::cout << "Simple: close called" << std::endl;
_connection->disconnect();
_state = IN_CONNECT;
@ -152,7 +152,7 @@ namespace triagens {
switch (_state) {
case (IN_CONNECT): {
handleConnect();
std::cout << "Simple: handleConnect state: " << _state << std::endl;
// XXX std::cout << "Simple: handleConnect state: " << _state << std::endl;
// If this goes wrong, _state is set to DEAD
break;
}