Skip to content

Commit

Permalink
Remove excessive log
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Yuan <[email protected]>
  • Loading branch information
juntao committed Jan 28, 2024
1 parent c96aefd commit c6d0b46
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ impl Qdrant {

let v = self.search_points_api(collection_name, &params).await.unwrap();
let rs : &Vec<Value> = v.get("result").unwrap().as_array().unwrap();
println!("Search result is {:?}", rs);
let mut sps : Vec<ScoredPoint> = Vec::<ScoredPoint>::new();
for r in rs {
let sp : ScoredPoint = serde_json::from_value(r.clone()).unwrap();
Expand Down

0 comments on commit c6d0b46

Please sign in to comment.