Minor tweaks to output

This commit is contained in:
Dave Hrycyszyn
2024-06-06 16:03:36 +01:00
parent c05cc7b15c
commit 4c586ec22e
3 changed files with 3 additions and 2 deletions

View File

@@ -14,7 +14,6 @@ pub(crate) fn write(
config: &SideNodeConfig,
file_path: &PathBuf,
) -> Result<(), Box<dyn std::error::Error>> {
println!("Writing config to: {:?}", file_path);
let toml_string = to_string(config)?;
let mut file = File::create(file_path)?;
file.write_all(toml_string.as_bytes())?;