Browse Source

Remove request URL from log.txt

pull/1639/head
Andrew Belt 6 years ago
parent
commit
704f9f0ee3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/util/request.cpp

+ 1
- 1
src/util/request.cpp View File

@@ -85,7 +85,7 @@ json_t *requestJson(RequestMethod method, std::string url, json_t *dataJ) {
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &resText); curl_easy_setopt(curl, CURLOPT_WRITEDATA, &resText);


// Perform request // Perform request
info("Requesting %s", url.c_str());
// info("Requesting %s", url.c_str());
// curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); // curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
CURLcode res = curl_easy_perform(curl); CURLcode res = curl_easy_perform(curl);




Loading…
Cancel
Save