Skip to content

Commit ff6010e

Browse files
committed
Remove debug notification
Missed removing it before I pushed the code, and it unfortunately got missed in review too. Signed-off-by: David Thompson <davthomp@redhat.com>
1 parent d3d3d93 commit ff6010e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/extension.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,6 @@ export function startClient(
204204
client.onRequest(FSReadUriType, async (uri: string) => {
205205
try {
206206
const parsedUri = Uri.parse(uri);
207-
window.showInformationMessage(`uri: ${parsedUri.toString()}`);
208207
const uint8array = await workspace.fs.readFile(parsedUri);
209208
return new TextDecoder().decode(uint8array);
210209
} catch (e) {

0 commit comments

Comments
 (0)