Skip to content

Commit

Permalink
enable logs for iov example
Browse files Browse the repository at this point in the history
  • Loading branch information
Siel committed Nov 12, 2024
1 parent 8e30d52 commit 87fac01
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/iov/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use logger::setup_log;
use pmcore::prelude::*;
fn main() {
let sde = equation::SDE::new(
Expand Down Expand Up @@ -29,6 +30,7 @@ fn main() {
);

let settings = settings::read("examples/iov/config.toml".to_string()).unwrap();
setup_log(&settings).unwrap();
let data = data::read_pmetrics("examples/iov/test.csv").unwrap();
let mut algorithm = dispatch_algorithm(settings, sde, data).unwrap();
algorithm.initialize().unwrap();
Expand Down

0 comments on commit 87fac01

Please sign in to comment.