cargo fmt
Rust/sat-rs/pipeline/head Build started... Details
Rust/sat-rs/pipeline/pr-main This commit looks good Details

This commit is contained in:
Robin Müller 2024-03-13 12:03:11 +01:00
parent 9d711d2b73
commit 972bf19188
Signed by: muellerr
GPG Key ID: A649FB78196E3849
2 changed files with 3 additions and 2 deletions

View File

@ -102,7 +102,8 @@ fn main() {
.chain(std::io::stdout())
.chain(fern::log_file("output.log").expect("could not open log output file"))
// Apply globally
.apply().expect("could not apply logger configuration");
.apply()
.expect("could not apply logger configuration");
log::info!("starting simulation thread");
// This thread schedules the simulator.

View File

@ -27,7 +27,7 @@ impl SimTestbench {
}
}
pub fn handle_sim_requests_time_agnostic(&mut self) {
self.handle_sim_requests(MonotonicTime::EPOCH);
self.handle_sim_requests(MonotonicTime::EPOCH);
}
delegate! {