From f8f3bc73ac00f0ab6bab6376ba4a2c1a03c72a7e Mon Sep 17 00:00:00 2001 From: lkoester Date: Thu, 25 Apr 2024 17:48:44 +0200 Subject: [PATCH] added minor logging changes --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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));