Skip to content

Commit c679a6f

Browse files
committed
chore: reduced autocompletion data logging verbosity
1 parent e5d5de3 commit c679a6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/task/task.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1328,10 +1328,10 @@ export class Task {
13281328
}
13291329

13301330
public async updateAutocompletionData(words?: string[], force = false) {
1331-
logger.info('Updating autocompletion data', {
1331+
logger.debug('Updating autocompletion data', {
13321332
baseDir: this.project.baseDir,
13331333
taskId: this.taskId,
1334-
words,
1334+
words: words?.length,
13351335
});
13361336
if (words) {
13371337
this.eventManager.sendUpdateAutocompletion(this.project.baseDir, this.taskId, words);

0 commit comments

Comments
 (0)