fix: remove debug line

This commit is contained in:
Derrick Hammer 2024-01-16 01:54:46 -05:00
parent aa2ee9eee2
commit cc5fadeef3
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 0 additions and 3 deletions

View File

@ -8,7 +8,6 @@ import (
"git.lumeweb.com/LumeWeb/portal/db/models"
"git.lumeweb.com/LumeWeb/portal/interfaces"
"github.com/go-resty/resty/v2"
"go.uber.org/zap"
"io"
"lukechampine.com/blake3"
)
@ -57,8 +56,6 @@ func (s StorageServiceImpl) PutFile(file io.ReadSeeker, bucket string, generateP
return nil, err
}
s.portal.Logger().Info("resp", zap.Any("resp", resp.String()))
if resp.IsError() {
if resp.Error() != nil {
return nil, resp.Error().(error)