3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

ProcessManager: remove debug statement

This commit is contained in:
Pragmatic Software 2020-02-16 15:56:27 -08:00
parent eb94c566b9
commit 7b0f192d8e

View File

@ -115,7 +115,6 @@ sub kill_cmd {
my $now = time;
foreach my $pid (sort keys %{$self->{processes}}) {
my $process = $self->{processes}->{$pid};
print "$pid: running time " . $now - $process->{process_start} . " and kill time: $kill_time\n";
next if defined $kill_time and $now - $process->{process_start} < $kill_time;
push @pids, $pid;
}