summaryrefslogtreecommitdiffstats
path: root/modules/command.pl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/command.pl')
-rw-r--r--modules/command.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/command.pl b/modules/command.pl
index 07ef31e..889a3de 100644
--- a/modules/command.pl
+++ b/modules/command.pl
@@ -2,6 +2,7 @@ package ASM::Commander;
use warnings;
use strict;
use IO::All;
+use POSIX qw(strftime);
sub new
{
@@ -41,7 +42,7 @@ sub command
}
}
if ($cmd=~/$command->{cmd}/) {
- print "$event->{from} told me: $cmd \n";
+ print strftime("%F %T ", gmtime) . "$event->{from} told me: $cmd \n";
eval $command->{content};
warn $@ if $@;
last;