summaryrefslogtreecommitdiffstats
path: root/lib/Crawl/Bot/Plugin/Logging.pm
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2012-07-08 23:12:39 -0500
committerNeil Moore <neil@s-z.org>2012-07-08 23:12:39 -0500
commitee64b338fbf25ac140934e300a395664c98b78ba (patch)
tree601d0480cf21b5221a5e81a889a244f412bf124a /lib/Crawl/Bot/Plugin/Logging.pm
parentddba2facafd2a229d34f8502b08b283d2e41bb5f (diff)
downloadcrawlbot-ee64b338fbf25ac140934e300a395664c98b78ba.tar.gz
crawlbot-ee64b338fbf25ac140934e300a395664c98b78ba.zip
Whitespace fixes.
Diffstat (limited to 'lib/Crawl/Bot/Plugin/Logging.pm')
-rw-r--r--lib/Crawl/Bot/Plugin/Logging.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Crawl/Bot/Plugin/Logging.pm b/lib/Crawl/Bot/Plugin/Logging.pm
index 6bc6ecc..0326337 100644
--- a/lib/Crawl/Bot/Plugin/Logging.pm
+++ b/lib/Crawl/Bot/Plugin/Logging.pm
@@ -89,7 +89,7 @@ sub emoted {
my ($args) = @_;
if ($args->{channel} eq $self->bot->{channels}[0]) {
- $self->log_message("* $args->{who} $args->{body}");
+ $self->log_message("* $args->{who} $args->{body}");
}
return;
}
@@ -99,7 +99,7 @@ sub chanjoin {
my ($args) = @_;
if ($args->{channel} eq $self->bot->{channels}[0]) {
- $self->log_message("-!- $args->{who} has joined $args->{channel}");
+ $self->log_message("-!- $args->{who} has joined $args->{channel}");
}
return;
}
@@ -109,7 +109,7 @@ sub chanpart {
my ($args) = @_;
if ($args->{channel} eq $self->bot->{channels}[0]) {
- $self->log_message("-!- $args->{who} has left $args->{channel}");
+ $self->log_message("-!- $args->{who} has left $args->{channel}");
}
return;
}
@@ -129,7 +129,7 @@ sub kicked {
my ($args) = @_;
if ($args->{channel} eq $self->bot->{channels}[0]) {
- $self->log_message("-!- $args->{kicked} was kicked from $args->{channel} by $args->{who} [$args->{reason}]");
+ $self->log_message("-!- $args->{kicked} was kicked from $args->{channel} by $args->{who} [$args->{reason}]");
}
return;
}