浏览代码

Avoids prompt for insiders version

main
Eric Amodio 2 年前
父节点
当前提交
f8930ca854
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. +4
    -2
      src/extension.ts

+ 4
- 2
src/extension.ts 查看文件

@ -122,8 +122,10 @@ export async function activate(context: ExtensionContext): Promise
setTimeout(async () => {
if (cfg.outputLevel !== OutputLevel.Debug) return;
if (await Messages.showDebugLoggingWarningMessage()) {
void executeCommand(Commands.DisableDebugLogging);
if (!container.insiders) {
if (await Messages.showDebugLoggingWarningMessage()) {
void executeCommand(Commands.DisableDebugLogging);
}
}
}, 60000);
}

||||||
xxxxxxxxxx
000:0
正在加载...
取消
保存