From: Edwin Török Date: Tue, 8 Nov 2022 08:57:47 +0000 (+0000) Subject: tools/oxenstored: Log live update issues at warning level X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=3f02e0a70fe9f8143454b742563433958d4a87f8;p=people%2Fdwmw2%2Fxen.git tools/oxenstored: Log live update issues at warning level During live update, oxenstored tries a best effort approach to recover as many domains and information as possible even if it encounters errors restoring some domains. However, logging about misunderstood input is more severe than simply info. Log it at warning instead. Signed-off-by: Edwin Török Acked-by: Christian Lindig --- diff --git a/tools/ocaml/xenstored/xenstored.ml b/tools/ocaml/xenstored/xenstored.ml index f526f4fb23..35b8cbd43f 100644 --- a/tools/ocaml/xenstored/xenstored.ml +++ b/tools/ocaml/xenstored/xenstored.ml @@ -186,9 +186,9 @@ let from_channel_f chan global_f evtchn_f socket_f domain_f watch_f store_f = (Perms.Node.of_string (unhexify perms ^ "\000")) (unhexify value) | _ -> - info "restoring: ignoring unknown line: %s" line + warn "restoring: ignoring unknown line: %s" line with exn -> - info "restoring: ignoring unknown line: %s (exception: %s)" + warn "restoring: ignoring unknown line: %s (exception: %s)" line (Printexc.to_string exn); () with End_of_file ->