We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad5b5ae commit 2ee39bfCopy full SHA for 2ee39bf
attestation-agent/attestation-agent/src/bin/ttrpc_dep/server.rs
@@ -89,7 +89,10 @@ impl AttestationAgentService for AA {
89
.get_derived_key(&req.KeyId, Vec::new())
90
.await
91
.map_err(|e| {
92
- error!("AA (ttrpc): get derived key failed:\n {e:?}\n key_id:\n {&req.key_id}");
+ error!(
93
+ "AA (ttrpc): get derived key failed:\n {e:?}\n key_id:\n {}",
94
+ &req.KeyId
95
+ );
96
let mut error_status = ::ttrpc::proto::Status::new();
97
error_status.set_code(Code::INTERNAL);
98
error_status.set_message(format!(
0 commit comments