mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-08-05 12:46:25 +00:00
add error log for qm start of the target vm.
Can be usefull to see what's wrong if target vm doesn't start (missing storage, missing bridge,...) Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
This commit is contained in:
parent
3beb415bd7
commit
ab399b7c5d
@ -312,7 +312,10 @@ sub phase2 {
|
||||
if ($line =~ m/^migration listens on port (\d+)$/) {
|
||||
$rport = $1;
|
||||
}
|
||||
}, errfunc => sub {});
|
||||
}, errfunc => sub {
|
||||
my $line = shift;
|
||||
$self->log('info', $line);
|
||||
});
|
||||
|
||||
die "unable to detect remote migration port\n" if !$rport;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user