From 5d7052f212e045cbe44344957c974bb290722a9b Mon Sep 17 00:00:00 2001 From: Abdelrahman AL MAROUK <72821992+almarouk@users.noreply.github.com> Date: Wed, 20 Aug 2025 16:40:40 +0200 Subject: [PATCH] Fix conda env trace message fixes https://github.com/microsoft/python-environment-tools/issues/240 --- crates/pet-conda/src/environments.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/pet-conda/src/environments.rs b/crates/pet-conda/src/environments.rs index bbffc607..ec514c9c 100644 --- a/crates/pet-conda/src/environments.rs +++ b/crates/pet-conda/src/environments.rs @@ -64,14 +64,14 @@ pub fn get_conda_environment_info( if conda_dir.exists() { trace!( "Conda install folder {}, found, & will be used for the Conda Env: {}", - env_path.display(), - conda_dir.display() + conda_dir.display(), + env_path.display() ); } else { warn!( "Conda install folder {}, does not exist, hence will not be used for the Conda Env: {}", - env_path.display(), - conda_dir.display() + conda_dir.display(), + env_path.display() ); conda_install_folder = None; }