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, });