diff --git a/src/accounts.rs b/src/accounts.rs index 9340b0c18..ee13701f5 100644 --- a/src/accounts.rs +++ b/src/accounts.rs @@ -54,7 +54,11 @@ impl Accounts { ensure!(dir.exists().await, "directory does not exist"); let config_file = dir.join(CONFIG_NAME); - ensure!(config_file.exists().await, "accounts.toml does not exist"); + ensure!( + config_file.exists().await, + "{:?} does not exist", + config_file + ); let config = Config::from_file(config_file) .await