From: Steinar H. Gunderson Date: Sun, 7 Apr 2013 15:11:55 +0000 (+0200) Subject: When a transfer ends, output the URL. X-Git-Tag: 1.0.0~189 X-Git-Url: https://git.sesse.net/?p=cubemap;a=commitdiff_plain;h=1a6917f77ba35d5397e887a554354a3e49458eb9 When a transfer ends, output the URL. --- diff --git a/input.cpp b/input.cpp index 6a53c22..de7252a 100644 --- a/input.cpp +++ b/input.cpp @@ -69,7 +69,7 @@ void Input::do_work() curl_easy_setopt(curl, CURLOPT_WRITEDATA, this); curl_easy_perform(curl); if (!should_stop) { - printf("Transfer ended, waiting 0.2 seconds and restarting...\n"); + printf("Transfer of '%s' ended, waiting 0.2 seconds and restarting...\n", url.c_str()); usleep(200000); } }