Skip to content

Commit

Permalink
more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Jun 6, 2024
1 parent c7805f0 commit ca938b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions crates/pet-conda/src/environments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ pub fn get_conda_environment_info(
// Not a conda environment (neither root nor a separate env).
return None;
}
println!("GETTING Conda env info from path {:?}", env_path);
// If we know the conda install folder, then we can use it.
let mut conda_install_folder = match manager {
Some(manager) => Some(manager.conda_dir.clone()),
Expand Down
1 change: 1 addition & 0 deletions crates/pet-conda/src/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ impl CondaManager {

fn get_conda_manager(path: &Path) -> Option<CondaManager> {
let conda_exe = get_conda_executable(path)?;
println!("FINDING Conda Manager in path {:?}", path);
if let Some(conda_pkg) = CondaPackageInfo::from(path, &crate::package::Package::Conda) {
Some(CondaManager {
executable: conda_exe,
Expand Down

0 comments on commit ca938b0

Please sign in to comment.