add extra debug logs

This commit is contained in:
mlsmaycon
2026-01-28 21:26:57 +01:00
parent 5b1fced872
commit a0a61d4f47
2 changed files with 5 additions and 2 deletions

View File

@@ -251,7 +251,7 @@ func (s *ProxyServiceServer) SendReverseProxyUpdate(update *proto.ProxyMapping)
conn := value.(*proxyConnection)
select {
case conn.sendChan <- update:
log.Debugf("Sent reverse proxy update to proxy %s", conn.proxyID)
log.Debugf("Sent reverse proxy update with id %s to proxy %s", update.Id, conn.proxyID)
default:
log.Warnf("Failed to send reverse proxy update to proxy %s (channel full)", conn.proxyID)
}