Skip to content

Commit 50bfabf

Browse files
committed
imp: logs default config creation path
1 parent bf32c1f commit 50bfabf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ impl TapeConfig {
117117
match Self::load_from_path(&default_path) {
118118
Ok(config) => Ok(config),
119119
Err(TapeConfigError::ConfigFileNotFound) => {
120-
print_info("tape.toml not found, creating default configuration...");
120+
print_info("No configuration found, creating default tape.toml...");
121121
let config = Self::create_default()?;
122-
print_info("✓ Default configuration created successfully");
122+
print_info(&format!("✓ Created default configuration at {:?}", default_path));
123123
Ok(config)
124124
},
125125
Err(e) => Err(e),

0 commit comments

Comments
 (0)