dap-basic: better output formatting

This commit is contained in:
Dmitry Sharshakov 2021-08-14 09:17:53 +03:00 committed by Blaž Hrastnik
parent 09390be6a5
commit 0777948fc0

View File

@ -13,7 +13,11 @@ struct LaunchArguments {
async fn output(mut output_event: Receiver<Event>) {
let body: OutputEventBody =
from_value(output_event.recv().await.unwrap().body.unwrap()).unwrap();
println!("{:?}", body);
println!(
"> [{}] {}",
body.category.unwrap_or("unknown".to_owned()),
body.output
);
}
#[tokio::main]