reduce logging

This commit is contained in:
2026-06-12 19:06:58 +02:00
parent c3c74bc47c
commit 9ba7ac5c70
6 changed files with 2 additions and 20 deletions

View File

@ -40,7 +40,6 @@ pub async fn subcommand(arguments: &ArgMatches, pool: DbPool) -> Result<(), Stri
let prev_env = fs::read_to_string(path.to_string() + "/env").map_err(|e| format!("failed to read previous env file : {}", e))?;
let new_env = env_settings::update_env(arguments, prev_env);
println!("\n\nnew env : {}", new_env);
let mut env_file = fs::OpenOptions::new().write(true).truncate(true).open(path + "/env").map_err(|e| format!("failed to reopen env file : {}" ,e))?;