Skip to content

Commit c58cf7e

Browse files
committed
Be less verbose
1 parent 9ad7477 commit c58cf7e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/toolkit/Aws.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ namespace openPMD::internal
3838
{
3939
void 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

5050
void 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
{

0 commit comments

Comments
 (0)