bugfix: Remove debug log left in the code

This commit is contained in:
jamesread 2024-04-19 00:58:05 +01:00
parent 30e2aa141b
commit 4c2cc5da1c
1 changed files with 0 additions and 2 deletions

View File

@ -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