Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
These logs should be way less verbose under normal operation.
  • Loading branch information
godsflaw committed Jan 24, 2012
1 parent 60e4776 commit d0a9cba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/lookup_rdns.strict.js
Expand Up @@ -29,7 +29,7 @@ function _in_whitelist(connection, plugin, address) {
var host_list_regex =
plugin.config.get('lookup_rdns.strict.whitelist_regex', 'list');

connection.loginfo(plugin, "Checking if " + address + " is in the " +
connection.logdebug(plugin, "Checking if " + address + " is in the " +
"lookup_rdns.strict.whitelist files");

var i;
Expand Down
2 changes: 1 addition & 1 deletion plugins/rcpt_to.in_host_list.js
Expand Up @@ -7,7 +7,7 @@ exports.hook_rcpt = function(next, connection, params) {
return next();
}

connection.loginfo(this, "Checking if " + rcpt + " host is in host_lists");
connection.logdebug(this, "Checking if " + rcpt + " host is in host_lists");

var domain = rcpt.host.toLowerCase();
var host_list = this.config.get('host_list', 'list');
Expand Down

0 comments on commit d0a9cba

Please sign in to comment.