1
0
Fork 0

Even more couts.

This commit is contained in:
Max Neunhoeffer 2014-12-03 09:29:02 +01:00
parent 4125ffc5b1
commit 41b01b78bc
1 changed files with 2 additions and 0 deletions

View File

@ -71,6 +71,7 @@ namespace triagens {
if (_connection->isConnected()) { if (_connection->isConnected()) {
_state = FINISHED; _state = FINISHED;
} }
std::cout << "Simple: contructor done, state: " << _state << std::endl;
} }
SimpleHttpClient::~SimpleHttpClient () { SimpleHttpClient::~SimpleHttpClient () {
@ -113,6 +114,7 @@ namespace triagens {
size_t bodyLength, size_t bodyLength,
std::map<std::string, std::string> const& headerFields) { std::map<std::string, std::string> const& headerFields) {
std::cout << "Simple: request, location: " << location << std::endl;
// ensure connection has not yet been invalidated // ensure connection has not yet been invalidated
TRI_ASSERT(_connection != nullptr); TRI_ASSERT(_connection != nullptr);