Skip to content

Commit

Permalink
manual rebase fix: Removing console logs that got in from master.
Browse files Browse the repository at this point in the history
  • Loading branch information
GijsvandenHoven authored and intcreator committed Mar 5, 2023
1 parent f5d4ea4 commit 03f94ad
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/time.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,6 @@ function CronTime(luxon) {
// determine next date
while (true) {
var diff = date - start;
console.log(date.toISO());

// hard stop if the current date is after the expected execution
if (Date.now() > timeout) {
Expand Down Expand Up @@ -651,8 +650,6 @@ function CronTime(luxon) {
const hoursJumped = expectedHour % 24 < actualHour;
const minutesJumped = expectedMinute % 60 < actualMinute;

console.log('hours diff? ', expectedHour, actualHour, hoursJumped);

return hoursJumped || minutesJumped;
},

Expand Down

0 comments on commit 03f94ad

Please sign in to comment.