Skip to content

Commit

Permalink
use log instead of rerun::external::log
Browse files Browse the repository at this point in the history
  • Loading branch information
makeecat committed Nov 4, 2024
1 parent b944302 commit d8d76f1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit d8d76f1

Please sign in to comment.