Skip to content

Commit 8a3b26f

Browse files
author
Duc Hieu Pham
committed
Change logging level for AWS Copy log from ERROR to INFO
Summary: As titled. Test Plan: N/A. Just build. Reviewers: igor, dhruba, haneeshr Reviewed By: haneeshr Differential Revision: https://rockset.phacility.com/D6017
1 parent 003b98f commit 8a3b26f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cloud/aws/aws_s3.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ Status S3StorageProvider::CopyObject(const std::string& bucket_name_src,
772772
src_url.c_str(), dest_object.c_str(), errmsg.c_str());
773773
return Status::IOError(dest_object.c_str(), errmsg.c_str());
774774
}
775-
Log(InfoLogLevel::ERROR_LEVEL, env_->info_log_,
775+
Log(InfoLogLevel::INFO_LEVEL, env_->info_log_,
776776
"[s3] S3WritableFile src path %s copied to %s %s", src_url.c_str(),
777777
dest_object.c_str(), st.ToString().c_str());
778778
return st;

0 commit comments

Comments
 (0)