3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-11-17 01:19:31 +01:00

Interpreter: remove debug message

This commit is contained in:
Pragmatic Software 2024-11-07 19:47:02 -08:00
parent e325138249
commit a11dc12861
No known key found for this signature in database
GPG Key ID: CC916B6E3C84ECCE
2 changed files with 1 additions and 2 deletions

View File

@ -379,7 +379,6 @@ sub interpret($self, $context) {
} else { } else {
# match the factoid in the current channel if it exists # match the factoid in the current channel if it exists
foreach my $f (@factoids) { foreach my $f (@factoids) {
$self->{pbot}->{logger}->log("[$f->[0]][$f->[1]] [$context->{from}]\n");
if ($f->[0] eq $context->{from}) { if ($f->[0] eq $context->{from}) {
($fact_channel, $fact_trigger) = ($f->[0], $f->[1]); ($fact_channel, $fact_trigger) = ($f->[0], $f->[1]);
last; last;

View File

@ -25,7 +25,7 @@ use PBot::Imports;
# These are set by the /misc/update_version script # These are set by the /misc/update_version script
use constant { use constant {
BUILD_NAME => "PBot", BUILD_NAME => "PBot",
BUILD_REVISION => 4843, BUILD_REVISION => 4844,
BUILD_DATE => "2024-11-07", BUILD_DATE => "2024-11-07",
}; };