Skip to content

Commit

Permalink
removed println, and formated
Browse files Browse the repository at this point in the history
  • Loading branch information
czarte committed Dec 6, 2023
1 parent dd290ea commit 08930b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion node/src/daemon/setup_reporter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,6 @@ impl SetupReporterReal {
};
let user_specific_data =
determine_user_specific_data(dirs_wrapper, &app, &command_line)?;
println!("user_specific_data {:?}", &user_specific_data);
let config_file_vcl = match ConfigFileVcl::new(
&user_specific_data.config_file.item,
user_specific_data.config_file.user_specified,
Expand Down
6 changes: 3 additions & 3 deletions node/src/node_configurator/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,15 +193,15 @@ fn get_config_file_from_mc(
path
}
None => match config_file_pth_dot {
Some(config_path) => {
Some(config_path_dot) => {
panic = false;
config_path
config_path_dot
}
None => match config_file_pth_relative {
Some(path_rel) => path_rel,
None => {
panic = false;
PathBuf::from("config.toml")
config_path
}
},
},
Expand Down

0 comments on commit 08930b9

Please sign in to comment.