From 4c2cc5da1c6f6c0d3f9db71d8f2173104bc80ba6 Mon Sep 17 00:00:00 2001 From: jamesread Date: Fri, 19 Apr 2024 00:58:05 +0100 Subject: [PATCH] bugfix: Remove debug log left in the code --- internal/executor/executor.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/executor/executor.go b/internal/executor/executor.go index aa911d0..d2653aa 100644 --- a/internal/executor/executor.go +++ b/internal/executor/executor.go @@ -222,8 +222,6 @@ func getExecutionsCount(rate config.RateSpec, req *ExecutionRequest) int { then := time.Now().Add(-duration) for _, logEntry := range req.executor.LogsByActionId[req.Action.ID] { - log.Debugf("Rate check %v", logEntry) - if logEntry.DatetimeStarted.After(then) && !logEntry.Blocked { executions += 1