Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unwanted file and change log level #15554

Merged
merged 2 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions one.js

This file was deleted.

4 changes: 2 additions & 2 deletions src/standalone/intellisense/notebookPythonPathService.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { IExtensionSyncActivationService } from '../../platform/activation/types
import { IPythonApiProvider, IPythonExtensionChecker } from '../../platform/api/types';
import { PylanceExtension } from '../../platform/common/constants';
import { getDisplayPath, getFilePath } from '../../platform/common/platform/fs-paths';
import { traceInfo, traceVerbose } from '../../platform/logging';
import { traceVerbose } from '../../platform/logging';
import { IControllerRegistration } from '../../notebooks/controllers/types';
import { IKernelProvider, isRemoteConnection } from '../../kernels/types';
import { noop } from '../../platform/common/utils/misc';
Expand Down Expand Up @@ -146,7 +146,7 @@ del _VSCODE_os, _VSCODE_sys, _VSCODE_builtins

if (!interpreter) {
// Empty string is special, means do not use any interpreter at all.
traceInfo(`No interpreter for Pylance for Notebook URI "${getDisplayPath(notebook.uri)}"`);
traceVerbose(`No interpreter for Pylance for Notebook URI "${getDisplayPath(notebook.uri)}"`);
return '';
}
traceVerbose(
Expand Down
Loading