Skip to content

Commit eb3debd

Browse files
committed
Include match word in log
1 parent f719cab commit eb3debd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/terminal/common/terminalAutoResponder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export class TerminalAutoResponder extends Disposable {
4545
}
4646
// Auto reply and reset
4747
if (this._pointer === matchWord.length) {
48-
logService.debug(`Auto reply sent "${response}"`);
48+
logService.debug(`Auto reply match: "${matchWord}", response: "${response}"`);
4949
proc.input(response);
5050
this._throttled = true;
5151
timeout(1000).then(() => this._throttled = false);

0 commit comments

Comments
 (0)