File tree Expand file tree Collapse file tree
src/client/pythonEnvironments/common/environmentManagers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import { getRegistryInterpreters } from '../windowsUtils';
2020import { EnvironmentType , PythonEnvironment } from '../../info' ;
2121import { cache } from '../../../common/utils/decorators' ;
2222import { isTestExecution } from '../../../common/constants' ;
23- import { traceError , traceVerbose , traceWarn } from '../../../logging' ;
23+ import { traceError , traceVerbose } from '../../../logging' ;
2424import { OUTPUT_MARKER_SCRIPT } from '../../../common/process/internal/scripts' ;
2525import { buildPythonExecInfo } from '../../exec' ;
2626import { getExecutablePath } from '../../info/executable' ;
@@ -514,7 +514,7 @@ export class Conda {
514514 public async getRunPythonArgs ( env : CondaEnvInfo , forShellExecution ?: boolean ) : Promise < string [ ] | undefined > {
515515 const condaVersion = await this . getCondaVersion ( ) ;
516516 if ( condaVersion && lt ( condaVersion , CONDA_RUN_VERSION ) ) {
517- traceWarn ( '`conda run` is not supported for conda version' , condaVersion . raw ) ;
517+ traceError ( '`conda run` is not supported for conda version' , condaVersion . raw ) ;
518518 return undefined ;
519519 }
520520 const args = [ ] ;
You can’t perform that action at this time.
0 commit comments