Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Jul 7, 2024
1 parent 260869b commit c08aa6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/m3u8download.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ static int m3u8download_addqueue(
goto end;
}

code = curl_easy_setopt(download.curl, CURLOPT_VERBOSE, 1L);
code = curl_easy_setopt(download.curl, CURLOPT_VERBOSE, 0L);

if (code != CURLE_OK) {
err = M3U8ERR_CURL_SETOPT_FAILURE;
Expand Down Expand Up @@ -334,7 +334,7 @@ static int m3u8download_pollqueue(

while (running) {
CURLMcode mc = curl_multi_perform(curl_multi, &running);
printf("running -> %i | mc -> %i\n", running, mc);
//printf("running -> %i | mc -> %i\n", running, mc);

if (mc != CURLM_OK) {
err = M3U8ERR_CURLM_ADD_FAILURE;
Expand All @@ -344,7 +344,7 @@ static int m3u8download_pollqueue(
if (running) {
mc = curl_multi_poll(curl_multi, NULL, 0, 1000, NULL);
}
printf("running -> %i | mc -> %i\n", running, mc);
//printf("running -> %i | mc -> %i\n", running, mc);
if (mc != CURLM_OK) {
err = M3U8ERR_CURLM_ADD_FAILURE;
goto end;
Expand Down

0 comments on commit c08aa6e

Please sign in to comment.