We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50b7b07 commit 4a0f364Copy full SHA for 4a0f364
1 file changed
devolutions-gateway/src/tls.rs
@@ -185,6 +185,7 @@ pub mod windows {
185
186
if let Some(cache) = cache_guard.as_ref() {
187
if now < cache.expires_at {
188
+ trace!("Used certified key from cache");
189
return Ok(Arc::clone(&cache.key));
190
}
191
@@ -250,6 +251,7 @@ pub mod windows {
250
251
key: key.clone(),
252
expires_at: now + CACHE_DURATION,
253
});
254
+ trace!("Cached certified key");
255
256
// Return CertifiedKey instance.
257
Ok(key)
0 commit comments