From f2b6dbfadfda23be9199a0bff34cf42ae46c4933 Mon Sep 17 00:00:00 2001 From: Ajinkya Kulkarni Date: Wed, 4 Dec 2024 20:40:28 +0100 Subject: [PATCH] WIP --- crates/utils/tcbinfo-updater/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/utils/tcbinfo-updater/src/main.rs b/crates/utils/tcbinfo-updater/src/main.rs index 75f7587..8fca88e 100644 --- a/crates/utils/tcbinfo-updater/src/main.rs +++ b/crates/utils/tcbinfo-updater/src/main.rs @@ -24,6 +24,7 @@ async fn get_tcbinfo(fmspc: Fmspc, update: Update) -> Value { .text() .await .expect("could not read https response"); + println!("{body}"); let tcbinfo: Value = serde_json::from_str(&body).expect("could not convert to JSON"); tcbinfo }