diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-09-19 00:29:51 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-09-19 00:29:51 -0700 |
| commit | 59dd271734909b80982b6459635f74cd14175619 (patch) | |
| tree | 999e8932958964f3ea6df7ab9d884892084e7771 | |
| parent | 4cbba2b1c67a86bed3f05e7cc79e9a06f14a5a63 (diff) | |
| download | seaweedfs-59dd271734909b80982b6459635f74cd14175619.tar.xz seaweedfs-59dd271734909b80982b6459635f74cd14175619.zip | |
more glog
| -rw-r--r-- | weed/s3api/s3api_object_handlers.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/weed/s3api/s3api_object_handlers.go b/weed/s3api/s3api_object_handlers.go index 4130d13c3..54b6da61c 100644 --- a/weed/s3api/s3api_object_handlers.go +++ b/weed/s3api/s3api_object_handlers.go @@ -41,6 +41,7 @@ func (s3a *S3ApiServer) PutObjectHandler(w http.ResponseWriter, r *http.Request) // http://docs.aws.amazon.com/AmazonS3/latest/dev/UploadingObjects.html bucket, object := getBucketAndObject(r) + glog.V(3).Infof("PutObjectHandler %s %s", bucket, object) _, err := validateContentMd5(r.Header) if err != nil { |
