Skip to content
This repository was archived by the owner on Mar 6, 2022. It is now read-only.

Commit ec2fb13

Browse files
committed
Show watcher description in initialization message
1 parent 965500b commit ec2fb13

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/LanguageServerIndexer/Handler/IndexerHandler.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,9 @@ public function indexer(CancellationToken $cancel): Promise
126126
}
127127

128128
$this->clientApi->window()->showMessage()->info(sprintf(
129-
'Done indexing (%ss), watching.',
130-
number_format(microtime(true) - $start, 2)
129+
'Done indexing (%ss), watching with %s',
130+
number_format(microtime(true) - $start, 2),
131+
$this->watcher->describe()
131132
));
132133

133134
return yield from $this->watch($cancel);

0 commit comments

Comments
 (0)