Skip to content

Commit 86087de

Browse files
committed
remove redundant debug messages
Signed-off-by: dimstav23 <[email protected]>
1 parent b899a87 commit 86087de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kernel/src/attestation/monitor.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ fn trustlet_report(params: &mut RequestParams) -> Result<(), SvsmReqError>{
222222

223223
// Now new_report holds the existing report data + measurements
224224
let new_report_size = new_report.len();
225-
log::info!{"zygote report size: { } original size: { }", new_report_size, REPORT_RESPONSE_SIZE};
225+
226226
// Perform the copy_back_report with the new cumulative report
227227
copy_back_report(params.rcx, &new_report, new_report_size);
228228
return Ok(());
@@ -281,7 +281,7 @@ fn function_report(params: &mut RequestParams) -> Result<(), SvsmReqError>{
281281

282282
// Now new_report holds the existing report data + measurements
283283
let new_report_size = new_report.len();
284-
log::info!{"function report size: { }", new_report_size};
284+
285285
// Perform the copy_back_report with the new cumulative report
286286
copy_back_report(params.rcx, &new_report, new_report_size);
287287
return Ok(());

0 commit comments

Comments
 (0)