added minor logging changes

This commit is contained in:
lkoester 2024-04-25 17:48:44 +02:00
parent 279fa42f31
commit f8f3bc73ac

View File

@ -55,11 +55,11 @@ mod tmtc;
fn main() { fn main() {
setup_logger().expect("setting up logging with fern failed"); setup_logger().expect("setting up logging with fern failed");
let version_str = VERSION.unwrap_or("?"); 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(); create_low_priority_ground_dir();
let app_cfg = create_app_config(); let app_cfg = create_app_config();
debug!("App Configuration: {:?}", app_cfg); info!("App Configuration: {:?}", app_cfg);
let stop_signal = Arc::new(AtomicBool::new(false)); let stop_signal = Arc::new(AtomicBool::new(false));