1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

added debug message about request time

This commit is contained in:
Steffen Vogel 2015-09-28 21:32:04 +02:00
parent 5155d0bd92
commit aba9362650

View file

@ -89,7 +89,7 @@ static size_t ngsi_request_writer(void *contents, size_t size, size_t nmemb, voi
static int ngsi_request(CURL *handle, json_t *content, json_t **response)
{
struct ngsi_response chunk = { 0 };
long code;
char *post = json_dumps(content, JSON_INDENT(4));
curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, ngsi_request_writer);
@ -103,8 +103,12 @@ static int ngsi_request(CURL *handle, json_t *content, json_t **response)
if (ret)
error("HTTP request failed: %s", curl_easy_strerror(ret));
long code;
double time;
curl_easy_getinfo(handle, CURLINFO_TOTAL_TIME, &time);
curl_easy_getinfo(handle, CURLINFO_RESPONSE_CODE, &code);
debug(3, "Request to context broker completed in %.4f seconds", time);
debug(20, "Response from context broker (code=%ld):\n%s", code, chunk.data);
json_error_t err;