Mailing List Archive

[xen stable-4.17] tools/oxenstored: Log live update issues at warning level
commit 991b512f5f69dde3c923804f887be9df56b03a74
Author: Edwin Török <edvin.torok@citrix.com>
AuthorDate: Tue Nov 8 08:57:47 2022 +0000
Commit: Andrew Cooper <andrew.cooper3@citrix.com>
CommitDate: Tue Dec 20 13:13:40 2022 +0000

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 <edvin.torok@citrix.com>
Acked-by: Christian Lindig <christian.lindig@citrix.com>
(cherry picked from commit 3f02e0a70fe9f8143454b742563433958d4a87f8)
---
tools/ocaml/xenstored/xenstored.ml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

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 ->
--
generated by git-patchbot for /home/xen/git/xen.git#stable-4.17