Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Imms <daimms@microsoft.com>2019-05-22 00:37:14 +0300
committerDaniel Imms <daimms@microsoft.com>2019-05-22 00:37:14 +0300
commit51245062b7615aea4c7eb900fea8fb91581482be (patch)
tree8402a582326161d0f5497bfd478716a59104c6d6
parent7082724c97df440efcd7e27857aeced4ae7eaa9e (diff)
Simplify terminal logging1.999.0
-rw-r--r--src/vs/workbench/contrib/terminal/node/terminalProcess.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/workbench/contrib/terminal/node/terminalProcess.ts b/src/vs/workbench/contrib/terminal/node/terminalProcess.ts
index 128576e59fe..e6fdb65533a 100644
--- a/src/vs/workbench/contrib/terminal/node/terminalProcess.ts
+++ b/src/vs/workbench/contrib/terminal/node/terminalProcess.ts
@@ -189,7 +189,7 @@ export class TerminalProcess implements ITerminalChildProcess, IDisposable {
if (this._isDisposed || !this._ptyProcess) {
return;
}
- this._logService.trace('IPty#write', data);
+ this._logService.trace('IPty#write', `${data.length} characters`);
this._ptyProcess.write(data);
}