Browse Source

detectoin println fix

pull/63/head
Alexey Velikiy 2 years ago
parent
commit
a338b3339b
  1. 2
      server/src/services/analytic_service/detection_runner.rs

2
server/src/services/analytic_service/detection_runner.rs

@ -70,7 +70,7 @@ impl DetectionRunner {
let detections = a.detect(ms.clone(), t_from, t_to).await.unwrap();
for d in detections {
println!("detection: {} {}", d);
println!("detection: {} {}", d.0, d.1);
}
// TODO: run detection periodically

Loading…
Cancel
Save