Include match word in log

This commit is contained in:
Daniel Imms 2022-08-18 08:42:27 -07:00
parent f719cabc15
commit eb3debdd9a
No known key found for this signature in database
GPG key ID: E5CF412B63651C69

View file

@ -45,7 +45,7 @@ export class TerminalAutoResponder extends Disposable {
}
// Auto reply and reset
if (this._pointer === matchWord.length) {
logService.debug(`Auto reply sent "${response}"`);
logService.debug(`Auto reply match: "${matchWord}", response: "${response}"`);
proc.input(response);
this._throttled = true;
timeout(1000).then(() => this._throttled = false);