We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42c80cd commit b162d7fCopy full SHA for b162d7f
1 file changed
packages/cipherstash-proxy/src/proxy/zerokms/mod.rs
@@ -5,6 +5,7 @@ pub use zerokms::ZeroKms;
5
6
use crate::config::TandemConfig;
7
use crate::error::{Error, ZeroKMSError};
8
+use crate::log::ZEROKMS;
9
use cipherstash_client::{
10
zerokms::{ClientKey, ZeroKMSBuilder},
11
AutoStrategy, ZeroKMS,
@@ -20,7 +21,7 @@ pub(crate) fn init_zerokms_client(config: &TandemConfig) -> Result<ZerokmsClient
20
21
.with_workspace_crn(config.auth.workspace_crn.clone())
22
.detect()
23
.map_err(|e| {
- tracing::warn!(target: "zerokms", msg = "ZeroKMS authentication strategy detection failed", error = %e);
24
+ tracing::warn!(target: ZEROKMS, msg = "ZeroKMS authentication strategy detection failed", error = %e);
25
ZeroKMSError::AuthenticationFailed
26
})?;
27
0 commit comments