Skip to content
This repository was archived by the owner on Sep 28, 2025. It is now read-only.

Commit f44adea

Browse files
committed
refactor: better notification check
1 parent 3dfa3b9 commit f44adea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/lib/lsp/process/pack-processor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class PackProcessor extends BaseService {
2222
async process(pack: Pack, token?: CancellationToken): Promise<void> {
2323
const start = Date.now();
2424
const name = getBasename(Fs.FromVscode(pack.folder));
25-
const reporter = await ProgressBar.create(this.extension, `pack: ${name}`);
25+
const reporter = await ProgressBar.create(this.extension, `processing pack: ${name}`);
2626
reporter.sendMessage("processing");
2727
this.logger.info(`processing pack: ${name}`, {
2828
uri: pack.folder,

0 commit comments

Comments
 (0)