downlink_logfile #21
@ -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);
|
||||
lkoester marked this conversation as resolved
Outdated
|
||||
create_low_priority_ground_dir();
|
||||
|
||||
let app_cfg = create_app_config();
|
||||
debug!("App Configuration: {:?}", app_cfg);
|
||||
info!("App Configuration: {:?}", app_cfg);
|
||||
lkoester marked this conversation as resolved
Outdated
muellerr
commented
I'd transform this to INFO. debug is usually not visible, and this is valuable information, as long as it's not too noisy. I'd transform this to INFO. debug is usually not visible, and this is valuable information, as long as it's not too noisy.
|
||||
|
||||
let stop_signal = Arc::new(AtomicBool::new(false));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user
I'd leave this a println. There are corner cases where logger output ca nbe invisible, and I always want to see this line at the very least.