summaryrefslogtreecommitdiffstats
path: root/Source/cmFileCommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-02-06 14:46:58 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-02-06 14:46:58 (GMT)
commita752fc5e8500be8a1fc8f5891374f23d125762a3 (patch)
treec4290538a573270357d60333bac53a89a44a9f32 /Source/cmFileCommand.cxx
parent7dfcc3fc12435d372e7142898c633504de064579 (diff)
downloadCMake-a752fc5e8500be8a1fc8f5891374f23d125762a3.zip
CMake-a752fc5e8500be8a1fc8f5891374f23d125762a3.tar.gz
CMake-a752fc5e8500be8a1fc8f5891374f23d125762a3.tar.bz2
ENH: remove debug print stuff
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r--Source/cmFileCommand.cxx7
1 files changed, 0 insertions, 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::string>
std::vector<std::string>::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<std::string>
}
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<std::string>
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())