This commit is contained in:
Isaac Connor 2019-10-21 13:18:30 -04:00
parent 3244c8ab5b
commit a486aafa48
1 changed files with 4 additions and 4 deletions

View File

@ -136,11 +136,11 @@ sub executeCommand {
}
sub printMsg {
my $self = shift;
my $msg = shift;
my $msg_len = length($msg);
my $self = shift;
my $msg = shift;
my $msg_len = length($msg);
Debug($msg.'['.$msg_len.']');
Debug($msg.'['.$msg_len.']');
}
1;