diff --git a/internal/outpost/proxyv2/proxyv2.go b/internal/outpost/proxyv2/proxyv2.go index e2ecb77c8..7ff1e33b1 100644 --- a/internal/outpost/proxyv2/proxyv2.go +++ b/internal/outpost/proxyv2/proxyv2.go @@ -91,7 +91,7 @@ func (ps *ProxyServer) TimerFlowCacheExpiry() {} func (ps *ProxyServer) GetCertificate(serverName string) *tls.Certificate { app, ok := ps.apps[serverName] if !ok { - ps.log.WithField("server-name", serverName).Debug("app does not exist") + ps.log.WithField("server-name", serverName).Debug("failed to get certificate for ServerName") return nil } if app.Cert == nil {