AntiFlood: less verbose logging of check_ban

This commit is contained in:
Pragmatic Software 2020-02-05 01:48:56 -08:00
parent 61f13f6b40
commit 6d9179913f
1 changed files with 2 additions and 7 deletions

View File

@ -426,7 +426,6 @@ sub check_flood {
$self->{whois_pending}->{$nick} = gettimeofday;
}
} else {
$self->{pbot}->{logger}->log("Not validated; checking bans...\n");
$self->check_bans($account, "$nick!$user\@$host", $channel);
}
}
@ -798,13 +797,9 @@ sub check_bans {
my ($self, $message_account, $mask, $channel, $dry_run) = @_;
$channel = lc $channel;
return if not $self->{pbot}->{chanops}->can_gain_ops($channel);
my $user = $self->{pbot}->{users}->loggedin($channel, $mask);
return 0 if $self->{pbot}->{capabilities}->userhas($user, 'botowner');
if (not $self->{pbot}->{chanops}->can_gain_ops($channel)) {
$self->{pbot}->{logger}->log("anti-flood: [check-ban] I do not have ops for $channel, ignoring possible ban evasions.\n");
return;
}
return if $self->{pbot}->{capabilities}->userhas($user, 'botowner');
my $debug_checkban = $self->{pbot}->{registry}->get_value('antiflood', 'debug_checkban');