Skip to content

Commit 01f4f85

Browse files
authored
vminmax: no log pollution
1 parent cf110a2 commit 01f4f85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vminmax_simple.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ local vs = {}
2828
function __vminmax_signal()
2929
verbose('\n'..table.concat(vs, ','))
3030
first, mid, last = vs[1], vs[math.ceil(#vs/2)], vs[#vs]
31-
info('\nfirst='..first..', mid='..mid..', last='..last..' @'..tick)
31+
verbose('\nfirst='..first..', mid='..mid..', last='..last..' @'..tick)
3232
-- too flat?
3333
if math.abs(mid-first) < MIN_DELTA_MPH or math.abs(mid-last) < MIN_DELTA_MPH then
3434
verbose('\n too similar.')

0 commit comments

Comments
 (0)