Browse Source

dispvm: increase log verbosity during domain restore

Marek Marczykowski-Górecki 10 năm trước cách đây
mục cha
commit
9ee207514e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      dispvm/qubes-restore.c

+ 1 - 1
dispvm/qubes-restore.c

@@ -28,7 +28,7 @@ int restore_domain(const char *restore_file, const char *conf_file, const char *
 			perror("dup2 or open");
 			exit(1);
 		}
-		execl("/usr/sbin/xl", "xl", "restore", conf_file, restore_file, NULL);
+		execl("/usr/sbin/xl", "xl", "-v", "restore", "-d", conf_file, restore_file, NULL);
 		perror("execl");
 		exit(1);
 	default:;