We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dd4f96 commit c37ad7dCopy full SHA for c37ad7d
1 file changed
src/managers/poetry/main.ts
@@ -1,6 +1,6 @@
1
import { Disposable, LogOutputChannel } from 'vscode';
2
import { PythonEnvironmentApi } from '../../api';
3
-import { traceInfo } from '../../common/logging';
+import { traceInfo, traceWarn } from '../../common/logging';
4
import { getPythonApi } from '../../features/pythonApi';
5
import { NativePythonFinder } from '../common/nativePythonFinder';
6
import { PoetryManager } from './poetryManager';
@@ -19,7 +19,7 @@ export async function registerPoetryFeatures(
19
if (poetryPath) {
20
const version = await getPoetryVersion(poetryPath);
21
if (!version) {
22
- traceInfo(
+ traceWarn(
23
'Poetry found at {0}, but unable to determine version. Poetry features will not be enabled.',
24
poetryPath,
25
);
0 commit comments