From f8455ae9efab298b4c4188c986b57a2adba5d880 Mon Sep 17 00:00:00 2001 From: seguler Date: Tue, 30 Jan 2018 22:00:31 +0000 Subject: [PATCH] commenting out cout --- azure-storage-cpp-lite/src/blob/blob_client_wrapper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-storage-cpp-lite/src/blob/blob_client_wrapper.cpp b/azure-storage-cpp-lite/src/blob/blob_client_wrapper.cpp index df23dbf3..d1cef465 100644 --- a/azure-storage-cpp-lite/src/blob/blob_client_wrapper.cpp +++ b/azure-storage-cpp-lite/src/blob/blob_client_wrapper.cpp @@ -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; }