Skip to content

Commit 3ab6b6d

Browse files
committed
Remove prefixes
1 parent 7d4198d commit 3ab6b6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/jupyterlab-lsp/src/connection_manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ export class DocumentConnectionManager {
306306
);
307307
} catch {
308308
this.console.warn(
309-
`LSP: Connection to ${virtual_document.uri} timed out after ${firstTimeoutSeconds} seconds, will continue retrying for another ${secondTimeoutMinutes} minutes`
309+
`Connection to ${virtual_document.uri} timed out after ${firstTimeoutSeconds} seconds, will continue retrying for another ${secondTimeoutMinutes} minutes`
310310
);
311311
try {
312312
await until_ready(
@@ -316,7 +316,7 @@ export class DocumentConnectionManager {
316316
);
317317
} catch {
318318
this.console.warn(
319-
`LSP: Connection to ${virtual_document.uri} timed out again after ${secondTimeoutMinutes} minutes, giving up`
319+
`Connection to ${virtual_document.uri} timed out again after ${secondTimeoutMinutes} minutes, giving up`
320320
);
321321
return;
322322
}

0 commit comments

Comments
 (0)