From 4646f4a030d38f842f3e34aa34966edad5587474 Mon Sep 17 00:00:00 2001 From: digimer Date: Thu, 21 Sep 2023 16:39:18 -0400 Subject: [PATCH] * Quieted logging. Signed-off-by: digimer --- Anvil/Tools/Server.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Anvil/Tools/Server.pm b/Anvil/Tools/Server.pm index 68616464..39866588 100644 --- a/Anvil/Tools/Server.pm +++ b/Anvil/Tools/Server.pm @@ -672,7 +672,7 @@ sub get_runtime my $server_pid = 0; my $shell_call = $anvil->data->{path}{exe}{ps}." aux"; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => $debug, list => { shell_call => $shell_call }}); - my ($output, $return_code) = $anvil->System->call({debug => 2, shell_call => $shell_call}); + my ($output, $return_code) = $anvil->System->call({debug => $debug, shell_call => $shell_call}); foreach my $line (split/\n/, $output) { $line = $anvil->Words->clean_spaces({ string => $line }); @@ -690,7 +690,7 @@ sub get_runtime { my $shell_call = $anvil->data->{path}{exe}{ps}." -p ".$server_pid." -o etimes="; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => $debug, list => { shell_call => $shell_call }}); - my ($output, $return_code) = $anvil->System->call({debug => 2, shell_call => $shell_call}); + my ($output, $return_code) = $anvil->System->call({debug => $debug, shell_call => $shell_call}); foreach my $line (split/\n/, $output) { $runtime = $anvil->Words->clean_spaces({ string => $line });