From 7b5c5147631101dd57e42525eae245668f9ce6fd Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Tue, 18 Jun 2024 19:00:16 +0200 Subject: fix(ext/console): bump default max str lengthto 10_00 (#24245) --- ext/console/01_console.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext') diff --git a/ext/console/01_console.js b/ext/console/01_console.js index 785d7ffe6..90f09d4d1 100644 --- a/ext/console/01_console.js +++ b/ext/console/01_console.js @@ -2329,7 +2329,7 @@ const denoInspectDefaultOptions = { // node only maxArrayLength: 100, - maxStringLength: 100, // deno: strAbbreviateSize: 100 + maxStringLength: 10_000, // deno: strAbbreviateSize: 10_000 customInspect: true, // deno only @@ -2357,7 +2357,7 @@ function getDefaultInspectOptions() { const DEFAULT_INDENT = " "; // Default indent string -const STR_ABBREVIATE_SIZE = 100; +const STR_ABBREVIATE_SIZE = 10_000; class CSI { static kClear = "\x1b[1;1H"; -- cgit v1.2.3