File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,13 @@ namespace openPMD::internal
3838{
3939void AwsAsyncCounter::wait ()
4040{
41- std::cerr << " Waiting for remaining tasks. Have " << completion_counter
42- << " of " << request_counter << std::endl;
41+ // std::cerr << "Waiting for remaining tasks. Have " << completion_counter
42+ // << " of " << request_counter << std::endl;
4343 size_t target = this ->request_counter ;
4444 std::unique_lock lk (this ->mutex );
4545 this ->event .wait (
4646 lk, [this , target]() { return this ->completion_counter >= target; });
47- std::cerr << " Finished waiting for remaining tasks" << std::endl;
47+ // std::cerr << "Finished waiting for remaining tasks" << std::endl;
4848}
4949
5050void AwsAsyncCounter::add_task ()
@@ -116,8 +116,8 @@ auto ExternalBlockStorageAws::put(
116116
117117 if (put_outcome.IsSuccess ())
118118 {
119- std::cout << " File synchronously uploaded successfully to S3!"
120- << std::endl;
119+ // std::cout << "File synchronously uploaded successfully to S3!"
120+ // << std::endl;
121121 }
122122 else
123123 {
@@ -153,9 +153,9 @@ auto ExternalBlockStorageAws::put(
153153 (void )keepalive;
154154 if (put_outcome.IsSuccess ())
155155 {
156- std::cout
157- << " File asynchronously uploaded successfully to S3!"
158- << std::endl;
156+ // std::cout
157+ // << "File asynchronously uploaded successfully to S3!"
158+ // << std::endl;
159159 }
160160 else
161161 {
You can’t perform that action at this time.
0 commit comments