Skip to content

Commit 64b9374

Browse files
authored
Merge pull request #36 from KestrelAI/remove-istio-debug-log
Remove debug fmt.Printf statements from L7 smart cache
2 parents ce53fa1 + 7a6c993 commit 64b9374

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

pkg/smart_cache/l7_cache.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,6 @@ func (c *L7SmartCache) purgeCache() {
104104
defer c.mu.Unlock()
105105

106106
for key, accessLog := range c.flows {
107-
fmt.Printf("[DEBUG] Sending L7 flow: %s->%s:%d %s %s count=%d firstSeen=%v lastSeen=%v\n",
108-
key.SourceNamespace+"/"+key.SourceName,
109-
key.DestinationNamespace+"/"+key.DestinationServiceName,
110-
key.DestinationPort, key.HTTPMethod, key.HTTPPath, accessLog.Count, accessLog.FirstSeen, accessLog.LastSeen)
111-
112107
select {
113108
case c.flowChan <- L7Flow{
114109
Key: key,

0 commit comments

Comments
 (0)