From 704f9f0ee3414df493c095ba661795f97a48c07c Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Fri, 5 Jan 2018 16:23:06 -0500 Subject: [PATCH] Remove request URL from log.txt --- src/util/request.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/request.cpp b/src/util/request.cpp index 72702c04..e874b441 100644 --- a/src/util/request.cpp +++ b/src/util/request.cpp @@ -85,7 +85,7 @@ json_t *requestJson(RequestMethod method, std::string url, json_t *dataJ) { curl_easy_setopt(curl, CURLOPT_WRITEDATA, &resText); // Perform request - info("Requesting %s", url.c_str()); + // info("Requesting %s", url.c_str()); // curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); CURLcode res = curl_easy_perform(curl);