Skip to content

Commit

Permalink
fix(dgw): upgrade Windows store resolve error log (#617)
Browse files Browse the repository at this point in the history
This can help with troubleshooting configuration problems with
Windows system certificate store.
  • Loading branch information
CBenoit authored Dec 19, 2023
1 parent a2ce60a commit 4c4df60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devolutions-gateway/src/tls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ pub mod windows {
match self.resolve(client_hello) {
Ok(certified_key) => Some(certified_key),
Err(error) => {
debug!(error = format!("{error:#?}"), "Failed to resolve TLS certificate");
error!(error = format!("{error:#?}"), "Failed to resolve TLS certificate");
None
}
}
Expand Down

0 comments on commit 4c4df60

Please sign in to comment.