Skip to content

Commit

Permalink
fix: remove accidental logging 🤦
Browse files Browse the repository at this point in the history
  • Loading branch information
JaredReisinger committed Sep 14, 2024
1 parent aac195a commit 5f3f0dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/commands/get.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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,
Expand All @@ -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,
});
Expand Down

0 comments on commit 5f3f0dd

Please sign in to comment.