We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f719cab commit eb3debdCopy full SHA for eb3debd
src/vs/platform/terminal/common/terminalAutoResponder.ts
@@ -45,7 +45,7 @@ export class TerminalAutoResponder extends Disposable {
45
}
46
// Auto reply and reset
47
if (this._pointer === matchWord.length) {
48
- logService.debug(`Auto reply sent "${response}"`);
+ logService.debug(`Auto reply match: "${matchWord}", response: "${response}"`);
49
proc.input(response);
50
this._throttled = true;
51
timeout(1000).then(() => this._throttled = false);
0 commit comments