Small logging fix to striker-auto-initialize-all.

Signed-off-by: Digimer <digimer@alteeve.ca>
main
Digimer 3 years ago
parent 6c5f48e8ca
commit cdc23ad490
  1. 3
      tools/striker-auto-initialize-all

@ -618,7 +618,8 @@ sub initialize_machines
if ($network !~ /^sn/) if ($network !~ /^sn/)
{ {
push @{$machine_ips}, $ip_address; push @{$machine_ips}, $ip_address;
$anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { ip_count => @{$machine_ips} }}); my $ip_count = @{$machine_ips};
$anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { ip_count => $ip_count }});
} }
if (not $machine_host_uuid) if (not $machine_host_uuid)

Loading…
Cancel
Save