fix log messages

This commit is contained in:
2026-05-29 08:51:51 -06:00
parent 9e71c4e828
commit 9aa79753ff
2 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ func (c *Cache) Clean() error {
rsize += f.size
i++
}
slog.Info("evicted aged out pkgs", "num", i, "size", humanize.Bytes(uint64(rsize)))
slog.Info("evicted pkgs over size limit", "num", i, "size", humanize.Bytes(uint64(rsize)))
return nil
}