From df47de97f5e9f52c7b1b70d03664b6362e351c0a Mon Sep 17 00:00:00 2001 From: Mathieu Fenniak Date: Sat, 4 Oct 2025 09:25:57 -0600 Subject: [PATCH] fix: log error for why cache couldn't be started --- internal/app/run/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/app/run/runner.go b/internal/app/run/runner.go index 1bf32c78..82deea2b 100644 --- a/internal/app/run/runner.go +++ b/internal/app/run/runner.go @@ -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 }