]> xenbits.xensource.com Git - people/royger/xen.git/commitdiff
oxenstored: improve event-channel binding logging
authorJonathan Davies <jonathan.davies@citrix.com>
Fri, 7 Apr 2017 13:27:21 +0000 (14:27 +0100)
committerWei Liu <wei.liu2@citrix.com>
Mon, 10 Apr 2017 13:46:28 +0000 (14:46 +0100)
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 <jonathan.davies@citrix.com>
Reviewed-by: Wei Liu <wei.liu2@citrix.com>
Reviewed-by: Christian Lindig <christian.lindig@citrix.com>
Release-acked-by: Julien Grall <julien.grall@arm.com>
tools/ocaml/xenstored/domain.ml

index eda2ea91aff6e10ee1f5e16ac8ee53021a92143e..b0a01b06faadcee9b66e3d5051a28e7169fa9fb4 100644 (file)
@@ -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 =