We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cba23d commit a387052Copy full SHA for a387052
1 file changed
src/vs/workbench/contrib/terminal/browser/terminalLinkHandler.ts
@@ -244,7 +244,7 @@ export class TerminalLinkHandler extends DisposableStore {
244
const wasHandled = await new Promise<boolean>(r => {
245
const timeoutId = setTimeout(() => {
246
canceled = true;
247
- this._logService.error('An extension intecepted a terminal link but did not return');
+ this._logService.error(`An extension intecepted a terminal link but it timed out after ${TerminalLinkHandler.LINK_INTERCEPT_THRESHOLD} seconds`);
248
r(false);
249
}, TerminalLinkHandler.LINK_INTERCEPT_THRESHOLD);
250
let canceled = false;
0 commit comments