diff options
author | David Phillips <david@sighup.nz> | 2017-08-10 13:32:23 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2017-08-10 13:32:23 +1200 |
commit | 479e93acf9c61dec84743483c174412e67d262ff (patch) | |
tree | 0fd5386268c13ea6e4c9f0d891f27fb9fe2a4820 | |
parent | 80af35e960b379d4aea5166ba51d77a2142ab491 (diff) | |
download | idalius-479e93acf9c61dec84743483c174412e67d262ff.tar.xz |
Minor change to log/output format
-rwxr-xr-x | idalius.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -113,7 +113,7 @@ sub irc_public { my $nick = ( split /!/, $who )[0]; my $channel = $where->[0]; - print("$channel $who: $what\n"); + print("[$channel] $who: $what\n"); # reject ignored nicks first return if (grep {$_ eq $nick} @{$config{ignore}}); |