verbosify prints (todo make prettier)

This commit is contained in:
dr-frmr 2023-12-29 11:19:54 -05:00
parent 730bfa1221
commit d95aa9b649
No known key found for this signature in database
2 changed files with 4 additions and 3 deletions

View File

@ -6,7 +6,8 @@
"request_networking": true,
"request_messaging": [
"net:sys:uqbar",
"http_client:sys:uqbar"
"http_client:sys:uqbar",
"kernel:sys:uqbar"
],
"public": true
}

View File

@ -429,7 +429,7 @@ async fn handle_kernel_request(
let _ = send_to_terminal
.send(t::Printout {
verbosity: 0,
content: format!("kernel process map:\r\n{:?}", process_map),
content: format!("kernel process map:\r\n{:#?}", process_map),
})
.await;
}
@ -446,7 +446,7 @@ async fn handle_kernel_request(
let _ = send_to_terminal
.send(t::Printout {
verbosity: 0,
content: format!("kernel process info:\r\n{proc:?}",),
content: format!("kernel process info:\r\n{proc:#?}",),
})
.await;
}