diff --git a/src/cli/tc.rs b/src/cli/tc.rs index 782d75cf12..3b176d5451 100644 --- a/src/cli/tc.rs +++ b/src/cli/tc.rs @@ -23,8 +23,8 @@ const YML_FILE_NAME: &str = ".graphqlrc.yml"; const JSON_FILE_NAME: &str = ".tailcallrc.schema.json"; pub async fn run() -> Result<()> { - if let Err(e) = dotenv() { - tracing::warn!("Failed to load .env file: {}", e); + if let Ok(path) = dotenv() { + tracing::info!("Env file: {:?} loaded", path); } let cli = Cli::parse(); update_checker::check_for_update().await;