Skip to content

Commit 4559bed

Browse files
committed
fix:修复压缩任务不主动显示输出的问题
1 parent b5c9b60 commit 4559bed

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/cvbManager.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -895,6 +895,12 @@ export async function compressCvb(cvb: Cvb, userRequest: string): Promise<Cvb> {
895895
const MAX_CONCURRENT = 5; // 设置最大并行数量为5
896896

897897
const outputChannel = getOutputChannel();
898+
899+
if (outputChannel) {
900+
outputChannel.clear();
901+
outputChannel.show();
902+
}
903+
898904
const signal = getCurrentOperationController().signal;
899905

900906
outputChannel.appendLine("compress task start");

0 commit comments

Comments
 (0)