Skip to content

Commit a443be7

Browse files
committed
reduce from info to debug
Signed-off-by: Angelo De Caro <[email protected]>
1 parent c558092 commit a443be7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

platform/common/utils/cache/timeout.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func (e *timeoutEviction[K]) cleanup(timeout time.Duration) {
6666
e.mu.Lock()
6767
e.keys = e.keys[len(evicted):]
6868
e.mu.Unlock()
69-
logger.Infof("Evicting %d entries", len(evicted))
69+
logger.Debugf("Evicting %d entries", len(evicted))
7070
e.evict(evicted)
7171
}
7272
}

platform/fabric/core/generic/delivery/delivery.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ func (d *Delivery) Stop() {
139139
var ctr = atomic.Uint32{}
140140

141141
func (d *Delivery) Run(ctx context.Context) error {
142-
logger.Infof("Running delivery service [%d]", ctr.Add(1))
142+
logger.Debugf("Running delivery service [%d]", ctr.Add(1))
143143
if ctx == nil {
144144
ctx = context.Background()
145145
}

0 commit comments

Comments
 (0)