diff options
Diffstat (limited to 'Plugin')
-rw-r--r-- | Plugin/Log.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Plugin/Log.pm b/Plugin/Log.pm index dc2c6d3..dd092f5 100644 --- a/Plugin/Log.pm +++ b/Plugin/Log.pm @@ -134,6 +134,12 @@ sub on_invite { return; } +sub on_notice { + my ($self, $logger, $who, $where, $message, $irc) = @_; + $logger->("$t{bracket}\[$t{channel}$where$t{bracket}\]$t{info} --- Notice: $t{nick}$who$t{info}: $t{message}$message$t{reset}"); + return; +} + sub on_topic { my ($self, $logger, $who, $where, $topic, $irc) = @_; if ($topic) { |