Avoid excessive trace logging (microsoft/vscode#197549)
This commit is contained in:
Родитель
b8c064bbd6
Коммит
20a1492523
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vscode/proxy-agent",
|
||||
"version": "0.18.1",
|
||||
"version": "0.18.2",
|
||||
"description": "NodeJS http(s) agent implementation for VS Code",
|
||||
"main": "out/index.js",
|
||||
"types": "out/index.d.ts",
|
||||
|
|
|
@ -676,6 +676,10 @@ export function toLogString(args: any[]) {
|
|||
if (t === 'bigint') {
|
||||
return String(value);
|
||||
}
|
||||
if (t === 'string' && value.length > 25) {
|
||||
const len = `[${value.length} chars]`;
|
||||
return `${value.substr(0, 25 - len.length)}${len}`;
|
||||
}
|
||||
return value;
|
||||
})).join(', ')}]`;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче