From b09344e9ce94050ced7e7e348844c19a5c693e5a Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Fri, 16 Jun 2023 13:14:30 -0700 Subject: [PATCH] helo.checks: reduce noisy logging #3202 --- plugins/helo.checks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/helo.checks.js b/plugins/helo.checks.js index ea64faa5c..b5a32147c 100644 --- a/plugins/helo.checks.js +++ b/plugins/helo.checks.js @@ -110,7 +110,7 @@ exports.init = function (next, connection, helo) { exports.should_skip = function (connection, test_name) { if (connection.results.has('helo.checks', '_skip_hooks', test_name)) { - this.loginfo(connection, `SKIPPING: ${test_name}`); + this.logdebug(connection, `SKIPPING: ${test_name}`); return true; } connection.results.push(this, {_skip_hooks: test_name});