diff --git a/src/main.rs b/src/main.rs index f3218ef..40ab124 100644 --- a/src/main.rs +++ b/src/main.rs @@ -55,11 +55,11 @@ mod tmtc; fn main() { setup_logger().expect("setting up logging with fern failed"); let version_str = VERSION.unwrap_or("?"); - debug!("OPS-SAT Rust Experiment OBSW v{}", version_str); + println!("OPS-SAT Rust Experiment OBSW v{}", version_str); create_low_priority_ground_dir(); let app_cfg = create_app_config(); - debug!("App Configuration: {:?}", app_cfg); + info!("App Configuration: {:?}", app_cfg); let stop_signal = Arc::new(AtomicBool::new(false));