From 480745c8892add09141ee131004bbc18a25d695f Mon Sep 17 00:00:00 2001 From: digimer Date: Wed, 28 Feb 2024 16:37:31 -0500 Subject: [PATCH] Disabled printing of the countdown. Signed-off-by: digimer --- Anvil/Tools/Network.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Anvil/Tools/Network.pm b/Anvil/Tools/Network.pm index e5d14904..bc27ab22 100644 --- a/Anvil/Tools/Network.pm +++ b/Anvil/Tools/Network.pm @@ -4775,7 +4775,7 @@ sub wait_for_network $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => $debug, list => { timeout => $timeout }}); } - my $shell_call = $anvil->data->{path}{exe}{'nm-online'}." --wait-for-startup --timeout ".$timeout; + my $shell_call = $anvil->data->{path}{exe}{'nm-online'}." --wait-for-startup --quiet --timeout ".$timeout; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => $debug, list => { shell_call => $shell_call }}); my ($output, $return_code) = $anvil->System->call({debug => $debug, shell_call => $shell_call});