From 5f3f0dd03f1006502140c9de93c90b4ed5b5601b Mon Sep 17 00:00:00 2001 From: Jared Reisinger Date: Fri, 13 Sep 2024 23:21:08 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20remove=20accidental=20logging=20?= =?UTF-8?q?=F0=9F=A4=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/commands/get.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/commands/get.ts b/src/commands/get.ts index 11be0a9..987ee3f 100644 --- a/src/commands/get.ts +++ b/src/commands/get.ts @@ -813,7 +813,7 @@ Examples: let innerNum = 0; let tryConvert = false; - helpers.dbg(0, 'converting date?', { innerValue }); + helpers.dbg(2, 'converting date?', { innerValue }); // Typescript can't track type through an intermediate variable, so we just // call typeof several times. @@ -835,7 +835,7 @@ Examples: const date = moment.unix(innerNum); const dateFmt = this.formatDate(date); - helpers.dbg(0, 'converting date', { + helpers.dbg(2, 'converting date', { label: field.label, innerValue, date, @@ -845,7 +845,7 @@ Examples: return dateFmt; } - helpers.dbg(0, "doesn't look like date", { + helpers.dbg(2, "doesn't look like date", { label: field.label, innerValue, });