From 816ca6a5c98cae5988e626c449b820343ff14965 Mon Sep 17 00:00:00 2001 From: luhaoling <2198702716@qq.com> Date: Thu, 29 Feb 2024 17:35:53 +0800 Subject: [PATCH] fix: find error --- pkg/common/db/s3/minio/minio.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/common/db/s3/minio/minio.go b/pkg/common/db/s3/minio/minio.go index a8a975ad0..a8cadcc3d 100644 --- a/pkg/common/db/s3/minio/minio.go +++ b/pkg/common/db/s3/minio/minio.go @@ -314,8 +314,10 @@ func (m *Minio) StatObject(ctx context.Context, name string) (*s3.ObjectInfo, er return nil, err } log.ZDebug(ctx, "StatObject !!!!!!1111111111111111111111111111111111") + log.ZInfo(ctx, "StatObject", "bucket", m.bucket, "name", name) info, err := m.core.Client.StatObject(ctx, m.bucket, name, minio.StatObjectOptions{}) if err != nil { + log.ZDebug(ctx, "StatObject !!!!!!555555555555", err) return nil, err } log.ZDebug(ctx, "StatObject !!!!!!22222222222222222222222222222222222")