diff options
| author | chrislu <chris.lu@gmail.com> | 2023-10-19 08:10:33 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2023-10-19 08:10:33 -0700 |
| commit | 612fd7206ef9e46b47d789d5df7859f1b472b826 (patch) | |
| tree | de26791d4eef0d1da5eac54a7bcb05f938108ff4 | |
| parent | 6c82d7ddfcaed124e5597acbfae07ddbcd9b9639 (diff) | |
| download | seaweedfs-612fd7206ef9e46b47d789d5df7859f1b472b826.tar.xz seaweedfs-612fd7206ef9e46b47d789d5df7859f1b472b826.zip | |
fix
| -rw-r--r-- | weed/s3api/s3api_server.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/s3api/s3api_server.go b/weed/s3api/s3api_server.go index 58251491f..1767090f1 100644 --- a/weed/s3api/s3api_server.go +++ b/weed/s3api/s3api_server.go @@ -68,7 +68,7 @@ func NewS3ApiServer(router *mux.Router, option *S3ApiServerOption) (s3ApiServer if err := s3ApiServer.iam.loadS3ApiConfigurationFromFile(option.Config); err != nil { glog.Errorf("fail to load config file %s: %v", option.Config, err) } else { - glog.V(0).Infof("Loaded %s identities from config file %s", len(s3ApiServer.iam.identities), option.Config) + glog.V(0).Infof("Loaded %d identities from config file %s", len(s3ApiServer.iam.identities), option.Config) } }) } |
