Skip to content

Commit

Permalink
update: show path to .env file used on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
Roardom committed Jan 18, 2025
1 parent 9ef9d50 commit 27b9b60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tracker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ impl Tracker {
pub async fn default() -> Result<Arc<Tracker>> {
print!(".env file: verifying file exists ... ");
io::stdout().flush().unwrap();
dotenv().context(".env file not found.")?;
println!("[Finished]");
let env_path = dotenv().context(".env file not found.")?;
println!("[Finished] Path: {:?}", env_path);

print!("Loading config from env ... ");
io::stdout().flush().unwrap();
Expand Down

0 comments on commit 27b9b60

Please sign in to comment.