Skip to content

Commit

Permalink
clean check log
Browse files Browse the repository at this point in the history
  • Loading branch information
M09Ic committed Feb 6, 2024
1 parent 051c270 commit cea66e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -383,11 +383,11 @@ func (pool *Pool) Invoke(v interface{}) {
} else if i := pool.random.Compare(bl); i < 1 {
if i == 0 {
if pool.Fuzzy {
logs.Log.Warn("[check.fuzzy] maybe trigger risk control, " + bl.String())
logs.Log.Debug("[check.fuzzy] maybe trigger risk control, " + bl.String())
}
} else {
atomic.AddInt32(&pool.failedCount, 1) //
logs.Log.Warn("[check.failed] maybe trigger risk control, " + bl.String())
logs.Log.Debug("[check.failed] maybe trigger risk control, " + bl.String())
pool.failedBaselines = append(pool.failedBaselines, bl)
}
} else {
Expand Down

0 comments on commit cea66e6

Please sign in to comment.