Skip to content

Commit 915dc86

Browse files
committed
Fix error message arguments
1 parent 2d7ec00 commit 915dc86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cloud/aws/aws_env.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1850,7 +1850,7 @@ Status AwsEnv::PutObject(const std::string& local_file,
18501850
st = Status::IOError(local_file, errmsg);
18511851
Log(InfoLogLevel::ERROR_LEVEL, info_log_,
18521852
"[s3] PutObject %s/%s, size %zu, ERROR %s", s3_bucket.c_str(),
1853-
object_path.c_str(), errmsg.c_str());
1853+
object_path.c_str(), fsize, errmsg.c_str());
18541854
} else {
18551855
Log(InfoLogLevel::INFO_LEVEL, info_log_,
18561856
"[s3] PutObject %s/%s, size %zu, OK", s3_bucket.c_str(),

0 commit comments

Comments
 (0)