Removed redundant to_string call

This commit is contained in:
Thorsten Sommer 2026-03-14 11:06:04 +01:00
parent 0780fcaae6
commit eceda541e0
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -82,7 +82,7 @@ pub fn start_qdrant_server(path_resolver: PathResolver, is_dev:bool){
if !path.exists() {
if let Err(e) = fs::create_dir_all(&path){
error!(Source="Qdrant"; "The required directory to host the Qdrant database could not be created: {}", e.to_string());
error!(Source="Qdrant"; "The required directory to host the Qdrant database could not be created: {}", e);
};
}
let (cert_path, key_path) =create_temp_tls_files(&path).unwrap();