From eceda541e0e858c7d6beb4e79953e2e1ca4a2eba Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 14 Mar 2026 11:06:04 +0100 Subject: [PATCH] Removed redundant to_string call --- runtime/src/qdrant.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/qdrant.rs b/runtime/src/qdrant.rs index 9de678c2..f0e18ab7 100644 --- a/runtime/src/qdrant.rs +++ b/runtime/src/qdrant.rs @@ -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();