Skip to content

Commit 363e6a5

Browse files
authored
Fix conda env trace message (#241)
fixes #240
1 parent 159451f commit 363e6a5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/pet-conda/src/environments.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ pub fn get_conda_environment_info(
6464
if conda_dir.exists() {
6565
trace!(
6666
"Conda install folder {}, found, & will be used for the Conda Env: {}",
67-
env_path.display(),
68-
conda_dir.display()
67+
conda_dir.display(),
68+
env_path.display()
6969
);
7070
} else {
7171
warn!(
7272
"Conda install folder {}, does not exist, hence will not be used for the Conda Env: {}",
73-
env_path.display(),
74-
conda_dir.display()
73+
conda_dir.display(),
74+
env_path.display()
7575
);
7676
conda_install_folder = None;
7777
}

0 commit comments

Comments
 (0)