# HG changeset patch # User David Scott # Date 1261058925 0 # Node ID c4de6840cf14a2c66c6629d3927419e02d08d00c # Parent 4971edbcd68cce4412df8201ea0c086a144033af CA-35893: fix some misleading logging messages These debug messages are printed for all internal shutdowns, not just crashes. Signed-off-by: David Scott diff -r 4971edbcd68c -r c4de6840cf14 ocaml/xapi/events.ml --- a/ocaml/xapi/events.ml Tue Dec 15 20:24:14 2009 +0000 +++ b/ocaml/xapi/events.ml Thu Dec 17 14:08:45 2009 +0000 @@ -168,18 +168,18 @@ (fun () -> Crashdump.make ~__context vm domid) (fun () -> perform_restart ~__context ~vm token) | `coredump_and_destroy -> - debug "domid %d actions_after_crash = coredump_and_destroy" domid; + debug "domid %d actions = coredump_and_destroy" domid; finally (fun () -> Crashdump.make ~__context vm domid) (fun () -> perform_destroy ~__context ~vm token) | `restart -> - debug "domid %d actions_after_crash = restart" domid; + debug "domid %d actions = restart" domid; perform_restart ~__context ~vm token | `destroy -> - debug "domid %d actions_after_crash = destroy" domid; + debug "domid %d actions = destroy" domid; perform_destroy ~__context ~vm token | `rename_restart -> - warn "domid %d actions_after_crash = rename_restart but this is not supported." domid; + warn "domid %d actions = rename_restart; performing a restart instead." domid; perform_restart ~__context ~vm token let on_reboot ~__context ~vm token =