We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d64cca0 + d434294 commit 0d0e24bCopy full SHA for 0d0e24b
src/shared/logger/outputChannelTransport.ts
@@ -64,7 +64,12 @@ export class OutputChannelTransport extends Transport {
64
} else if (loglevel === 'warn') {
65
c.warn(msg)
66
} else if (loglevel === 'debug' || loglevel === 'verbose') {
67
- c.debug(msg)
+ // XXX: `vscode.LogOutputChannel` loglevel is currently readonly:
68
+ // https://github.com/microsoft/vscode/issues/170450
69
+ // https://github.com/PowerShell/vscode-powershell/issues/4441
70
+ // So debug() will just drop messages unless the user has increased vscode's log-level.
71
+ // Use info() until vscode adds a way to set the loglevel.
72
+ c.info(msg)
73
} else {
74
c.info(msg)
75
}
0 commit comments