Skip to content

Commit

Permalink
derived-key: add debug info confidential-containers#3
Browse files Browse the repository at this point in the history
  • Loading branch information
eldios committed Feb 5, 2025
1 parent 15f86c6 commit 14b976f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ impl AttestationAgentService for AA {
.get_derived_key(&req.KeyId, Vec::new())
.await
.map_err(|e| {
error!("AA (ttrpc): get derived key failed:\n {e:?}\n key_id:\n {&req.key_id}");
error!(
"AA (ttrpc): get derived key failed:\n {e:?}\n key_id:\n {}",
&req.KeyId
);
let mut error_status = ::ttrpc::proto::Status::new();
error_status.set_code(Code::INTERNAL);
error_status.set_message(format!(
Expand Down

0 comments on commit 14b976f

Please sign in to comment.