Skip to content

Commit

Permalink
helo.checks: reduce noisy logging #3202
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson authored Jun 16, 2023
1 parent f3685a7 commit b09344e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/helo.checks.js
Original file line number Diff line number Diff line change
Expand Up @@ -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});
Expand Down

0 comments on commit b09344e

Please sign in to comment.