From 1a6917f77ba35d5397e887a554354a3e49458eb9 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 7 Apr 2013 17:11:55 +0200 Subject: [PATCH] When a transfer ends, output the URL. --- input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.39.2