repos / pico

pico services mono repo
git clone https://github.com/picosh/pico.git

commit
23182a6
parent
87b874c
author
Eric Bower
date
2025-04-06 18:20:25 -0400 EDT
chore(pobj): rm unused log stmts
1 files changed,  +0, -4
M pkg/pobj/storage/minio.go
+0, -4
 1@@ -8,7 +8,6 @@ import (
 2 	"log/slog"
 3 	"net/url"
 4 	"os"
 5-	"path/filepath"
 6 	"strconv"
 7 	"strings"
 8 	"time"
 9@@ -190,9 +189,6 @@ func (s *StorageMinio) GetObject(bucket Bucket, fpath string) (utils.ReadAndRead
10 		ETag:         "",
11 	}
12 
13-	cacheKey := filepath.Join(bucket.Name, fpath)
14-
15-	s.Logger.Info("object info not found in lru cache", "key", cacheKey)
16 	info, err := s.Client.StatObject(context.Background(), bucket.Name, fpath, minio.StatObjectOptions{})
17 	if err != nil {
18 		return nil, objInfo, err