Skip to content

Commit 1dc7157

Browse files
simonjbeaumontKoushik Chakravarty
authored andcommitted
Don't log all Domain build errors as Bootloader errors
Signed-off-by: Si Beaumont <simon.beaumont@citrix.com>
1 parent 59da77e commit 1dc7157

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ocaml/xenops/xenops_server_xen.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ module VM = struct
10831083
debug "VM = %s; domid = %d; Domain.Not_enough_memory. Needed: %Ld bytes" vm.Vm.id domid m;
10841084
raise (Not_enough_memory m)
10851085
| e ->
1086-
let m = Printf.sprintf "VM = %s; domid = %d; Bootloader error: %s" vm.Vm.id domid (Printexc.to_string e) in
1086+
let m = Printf.sprintf "VM = %s; domid = %d; Error: %s" vm.Vm.id domid (Printexc.to_string e) in
10871087
debug "%s" m;
10881088
raise e
10891089

0 commit comments

Comments
 (0)