diff --git a/lib/SimpleHttpClient/SimpleHttpClient.cpp b/lib/SimpleHttpClient/SimpleHttpClient.cpp index 58b24dd3b2..08823ca432 100644 --- a/lib/SimpleHttpClient/SimpleHttpClient.cpp +++ b/lib/SimpleHttpClient/SimpleHttpClient.cpp @@ -71,6 +71,7 @@ namespace triagens { if (_connection->isConnected()) { _state = FINISHED; } + std::cout << "Simple: contructor done, state: " << _state << std::endl; } SimpleHttpClient::~SimpleHttpClient () { @@ -113,6 +114,7 @@ namespace triagens { size_t bodyLength, std::map const& headerFields) { + std::cout << "Simple: request, location: " << location << std::endl; // ensure connection has not yet been invalidated TRI_ASSERT(_connection != nullptr);