Report native backend blockers
This commit is contained in:
parent
ee80ff780c
commit
d9150024dd
7 changed files with 103 additions and 13 deletions
|
|
@ -1525,6 +1525,20 @@ fn print_response(response: ControlResponse, json: bool) -> Result<()> {
|
|||
}
|
||||
);
|
||||
println!("iroh: {}", status.iroh);
|
||||
for backend in status.native_backends {
|
||||
println!(
|
||||
"native backend {}: {} target {} {} ({})",
|
||||
backend.module,
|
||||
backend.current_backend,
|
||||
backend.target_crate,
|
||||
backend.target_version,
|
||||
backend.status
|
||||
);
|
||||
println!(
|
||||
"native backend {} blocker: {}",
|
||||
backend.module, backend.blocker
|
||||
);
|
||||
}
|
||||
}
|
||||
ControlResponse::NodeId(node) => {
|
||||
println!("agent: {}", node.agent_id);
|
||||
|
|
|
|||
Loading…
Reference in a new issue