From d8d76f17cc41a9c89c3b1a15475a760e4f407335 Mon Sep 17 00:00:00 2001 From: Yang Zhou Date: Mon, 4 Nov 2024 16:19:00 -0500 Subject: [PATCH] use log instead of rerun::external::log --- Cargo.toml | 2 +- src/lib.rs | 1 - src/main.rs | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6036092e..3cfe80bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,6 +35,6 @@ thiserror = "1.0.63" serde = { version = "1.0.209", features = ["derive"] } serde_yaml = "0.9.34" env_logger = "0.11.5" -#log = "0.4.22" # use rerun::external::log +log = "0.4.22" rayon = "1.10.0" rand_chacha = "0.3.1" diff --git a/src/lib.rs b/src/lib.rs index d1c9ace0..e5ada6b8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -22,7 +22,6 @@ pub mod config; use nalgebra::{Matrix3, Quaternion, Rotation3, SMatrix, UnitQuaternion, Vector3}; use rand_chacha::ChaCha8Rng; use rand_distr::{Distribution, Normal}; -use rerun::external::log; use std::f32::consts::PI; #[derive(thiserror::Error, Debug)] /// Represents errors that can occur during simulation diff --git a/src/main.rs b/src/main.rs index 00d15093..bf721562 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,5 @@ use nalgebra::Vector3; use peng_quad::*; -use rerun::external::log; /// Main function for the simulation fn main() -> Result<(), SimulationError> { let mut config_str = "config/quad.yaml";