From 99a2290287e150562c905320614cead5e479ccc7 Mon Sep 17 00:00:00 2001 From: KuzmenkoEA Date: Mon, 20 May 2024 00:50:15 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D1=91?= =?UTF-8?q?=D0=BD=D0=BD=D1=8B=D0=B9=20=D0=BA=D0=BE=D0=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/main.cpp b/main.cpp index df81365..516ac68 100644 --- a/main.cpp +++ b/main.cpp @@ -51,6 +51,7 @@ Input download(const string& address) curl_easy_setopt(curl, CURLOPT_URL, address.c_str()); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data); curl_easy_setopt(curl, CURLOPT_WRITEDATA, &buffer); + curl_easy_setopt(curl, CURLOPT_VERBOSE, true); res = curl_easy_perform(curl); if (res != CURLE_OK) {