From 3475c97ee4a6442587d86b5cd0926614c1fb2939 Mon Sep 17 00:00:00 2001 From: Jonathan Davies Date: Fri, 7 Apr 2017 14:27:21 +0100 Subject: [PATCH] oxenstored: improve event-channel binding logging It's useful to see a bit more detail when an inter-domain event-channel is bound, especially over an oxenstored restart. Signed-off-by: Jonathan Davies Reviewed-by: Wei Liu Reviewed-by: Christian Lindig Release-acked-by: Julien Grall --- tools/ocaml/xenstored/domain.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ocaml/xenstored/domain.ml b/tools/ocaml/xenstored/domain.ml index eda2ea91af..b0a01b06fa 100644 --- a/tools/ocaml/xenstored/domain.ml +++ b/tools/ocaml/xenstored/domain.ml @@ -72,7 +72,7 @@ let notify dom = match dom.port with let bind_interdomain dom = dom.port <- Some (Event.bind_interdomain dom.eventchn dom.id dom.remote_port); - debug "domain %d bound port %s" dom.id (string_of_port dom.port) + debug "bound domain %d remote port %d to local port %s" dom.id dom.remote_port (string_of_port dom.port) let close dom = -- 2.39.5