Skip to content

Commit

Permalink
Merge pull request #4 from last-genius/private/asultanov/improve-logging
Browse files Browse the repository at this point in the history
logging: make xenstored-access less cryptic
  • Loading branch information
last-genius authored Jan 8, 2025
2 parents c8e8ac3 + eab5ddf commit 41e311b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oxenstored/connection.ml
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ let anon_id_next = ref 1
let get_domstr con =
match con.dom with
| None ->
"A" ^ string_of_int con.anonid
Printf.sprintf "DOM0 (ANON CONN #%d)" con.anonid
| Some dom ->
"D" ^ string_of_int (Domain.get_id dom)
Printf.sprintf "DOM%d" (Domain.get_id dom)

let make_perm dom =
let domid = match dom with None -> 0 | Some d -> Domain.get_id d in
Expand Down

0 comments on commit 41e311b

Please sign in to comment.