fix: log error for why cache couldn't be started

This commit is contained in:
Mathieu Fenniak 2025-10-04 09:25:57 -06:00
parent 5f3ff3d2e2
commit df47de97f5

View file

@ -123,7 +123,7 @@ func setupCache(cfg *config.Config, envs map[string]string) *cacheproxy.Handler
log.StandardLogger().WithField("module", "cache_request"),
)
if err != nil {
log.Error("Could not start the cache server, cache will be disabled")
log.Errorf("Could not start the cache server, cache will be disabled: %v", err)
return nil
}