瀏覽代碼

bugfix: Remove debug log left in the code

jamesread 2 年之前
父節點
當前提交
4c2cc5da1c
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      internal/executor/executor.go

+ 0 - 2
internal/executor/executor.go

@@ -222,8 +222,6 @@ func getExecutionsCount(rate config.RateSpec, req *ExecutionRequest) int {
 	then := time.Now().Add(-duration)
 	then := time.Now().Add(-duration)
 
 
 	for _, logEntry := range req.executor.LogsByActionId[req.Action.ID] {
 	for _, logEntry := range req.executor.LogsByActionId[req.Action.ID] {
-		log.Debugf("Rate check %v", logEntry)
-
 		if logEntry.DatetimeStarted.After(then) && !logEntry.Blocked {
 		if logEntry.DatetimeStarted.After(then) && !logEntry.Blocked {
 
 
 			executions += 1
 			executions += 1