From fb1d357a19bb3edb4f56f97349ff0941df3c4ca3 Mon Sep 17 00:00:00 2001 From: Yoshida Hiroshi Date: Fri, 20 Oct 2023 16:16:29 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=A2=E3=83=83=E3=83=97=E3=83=AD=E3=83=BC?= =?UTF-8?q?=E3=83=89=E3=81=AE=E9=96=8B=E5=A7=8B=E3=81=A8=E6=88=90=E5=8A=9F?= =?UTF-8?q?=E3=81=AE=E3=83=AD=E3=82=B0=E3=81=AE=E3=83=AD=E3=82=B0=E3=83=AC?= =?UTF-8?q?=E3=83=99=E3=83=AB=E3=82=92=20info=20=E3=81=AB=E5=A4=89?= =?UTF-8?q?=E6=9B=B4=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- s3.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/s3.go b/s3.go index f5c7f96..444818a 100644 --- a/s3.go +++ b/s3.go @@ -85,7 +85,7 @@ func uploadWebMFile(ctx context.Context, osConfig *s3.S3CompatibleObjectStorage, return "", err } - zlog.Debug(). + zlog.Info(). Str("dst", dst). Msg("WEB-UPLOAD-START") n, err := s3Client.FPutObject(ctx, @@ -95,7 +95,7 @@ func uploadWebMFile(ctx context.Context, osConfig *s3.S3CompatibleObjectStorage, if err != nil { return "", err } - zlog.Debug(). + zlog.Info(). Str("dst", dst). Int64("size", n.Size). Msg("UPLOAD-WEBM-SUCCESSFULLY") @@ -175,7 +175,7 @@ func uploadWebMFileWithRateLimit(ctx context.Context, osConfig *s3.S3CompatibleO // Save the file size. fileSize := fileStat.Size() - zlog.Debug(). + zlog.Info(). Str("dst", dst). Msg("WEB-UPLOAD-START") @@ -186,7 +186,7 @@ func uploadWebMFileWithRateLimit(ctx context.Context, osConfig *s3.S3CompatibleO return "", err } - zlog.Debug(). + zlog.Info(). Str("dst", dst). Int64("size", n.Size). Msg("UPLOAD-WEBM-SUCCESSFULLY")