diff --git a/src/file_manager/file_manager_open_file.cpp b/src/file_manager/file_manager_open_file.cpp index 734fc86f..6e1e3012 100644 --- a/src/file_manager/file_manager_open_file.cpp +++ b/src/file_manager/file_manager_open_file.cpp @@ -255,14 +255,12 @@ auto file_manager::open_file::native_operation( return api_error::invalid_operation; } - std::cout << "native_operation1" << std::endl; unique_recur_mutex_lock file_lock(file_mtx_); if (stop_requested_) { return api_error::download_stopped; } file_lock.unlock(); - std::cout << "native_operation2" << std::endl; const auto is_empty_file = new_file_size == 0U; const auto last_chunk = is_empty_file ? std::size_t(0U) @@ -272,7 +270,6 @@ auto file_manager::open_file::native_operation( file_lock.lock(); if (not is_empty_file && (last_chunk < read_state_.size())) { - std::cout << "native_operation3" << std::endl; file_lock.unlock(); update_background_reader(0U);