fix: Improved the first-time run behavior so that it outputs the default configuration file it tries to load to help users locate the file on first-runs

This commit is contained in:
2026-01-30 15:36:26 -07:00
parent c791b985f0
commit a2aa9507a9
5 changed files with 120 additions and 152 deletions
+1 -1
View File
@@ -146,7 +146,7 @@ pub(super) fn load_config(path: &str) -> Result<AppConfig> {
Ok(config)
}
Err(e) => {
log_and_print_error(format!("Unable to open config file: {e:?}"));
log_and_print_error(format!("Unable to open config file '{path}': {e:?}"));
process::exit(1);
}
}