This commit is contained in:
seguler 2018-01-30 22:00:31 +00:00
Родитель 679eae1b40
Коммит f8455ae9ef
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -446,7 +446,7 @@ namespace microsoft_azure {
/*errno already set by get_file_size*/
return;
}
std::cout << blob << "file size is: " << fileSize << std::endl;
//std::cout << blob << "file size is: " << fileSize << std::endl;
if(fileSize <= 64*1024*1024)
{
@ -460,7 +460,7 @@ namespace microsoft_azure {
std::ifstream ifs(sourcePath);
if(!ifs)
{
std::cout << "Failed to open " << sourcePath << std::endl;
//std::cout << "Failed to open " << sourcePath << std::endl;
errno = unknown_error;
return;
}