From a752fc5e8500be8a1fc8f5891374f23d125762a3 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 6 Feb 2008 09:46:58 -0500 Subject: ENH: remove debug print stuff --- Source/cmFileCommand.cxx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index d1c5117..3728a5f 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -1918,7 +1918,6 @@ cmFileCommand::HandleDownloadCommand(std::vector std::vector::const_iterator i = args.begin(); if(args.size() < 3) { - std::cout << args.size() << "\n"; this->SetError("FILE(DOWNLOAD url file) must be called with " "at least three arguments."); return false; @@ -1971,11 +1970,6 @@ cmFileCommand::HandleDownloadCommand(std::vector } i++; } - std::cout << "log var: [" << verboseLog << "]\n"; - std::cout << "Url: [" << url << "]\n"; - std::cout << "file: [" << file << "]\n"; - std::cout << "timeout: [" << timeout << "]\n"; - std::ofstream fout(file.c_str()); if(!fout) { @@ -2010,7 +2004,6 @@ cmFileCommand::HandleDownloadCommand(std::vector curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout ); } CURLcode res = curl_easy_perform(curl); - std::cout << "res = " << res << "\n"; /* always cleanup */ curl_easy_cleanup(curl); if(statusVar.size()) -- cgit v0.12