downlink_logfile #21
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "downlink_logfile"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -55,3 +56,3 @@
setup_logger().expect("setting up logging with fern failed");
let version_str = VERSION.unwrap_or("?");
println!("OPS-SAT Rust Experiment OBSW v{}", version_str);
debug!("OPS-SAT Rust Experiment OBSW v{}", version_str);
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.
@ -58,3 +60,3 @@
let app_cfg = create_app_config();
println!("App Configuration: {:?}", app_cfg);
debug!("App Configuration: {:?}", app_cfg);
I'd transform this to INFO. debug is usually not visible, and this is valuable information, as long as it's not too noisy.