added #log at all points wherer log pkg is used

This commit is contained in:
2026-05-03 09:51:20 -06:00
parent 58b5ab55ba
commit 46c2b9a2ff
6 changed files with 17 additions and 3 deletions
+1
View File
@@ -15,6 +15,7 @@ func (c *Cache) Fetch(relPath string) (*CacheFile, error) {
// fetch file from upstream
_, err, _ = c.sf.Do(relPath, func() (any, error) {
// #log
log.Print("calling fetch")
return nil, c.fetch(relPath)
})