Skip to content

Commit

Permalink
redact console log lines
Browse files Browse the repository at this point in the history
  • Loading branch information
bewest committed Jan 24, 2023
1 parent f51fac9 commit 0ee0712
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/report/reportclient.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,6 @@ var init = function init () {
var to = moment.tz(moment($('#rp_to').val()).startOf('day'), zone).endOf('day');
timerange = '&find[created_at][$gte]=' + from.toISOString() + '&find[created_at][$lt]=' + to.toISOString();

console.log('DATEFILTER', zone, timerange);
console.log("DATEFILTER", "FROM", from.format( ), moment.tz(moment($('#rp_from').val()).startOf('day'), zone).format( ) );
console.log("DATEFILTER", "TO", to.format( ), moment.tz(moment($('#rp_to').val()).startOf('day'), zone).endOf('day').format( ) );
//console.log($('#rp_from').val(),$('#rp_to').val(),zone,timerange);
while (from <= to) {
if (daystoshow[from.format('YYYY-MM-DD')]) {
Expand Down

0 comments on commit 0ee0712

Please sign in to comment.