Commenting out console logging.

This commit is contained in:
Brian McGonagill 2025-07-23 19:44:24 -05:00
parent 4687f27011
commit d25ef56591
31 changed files with 87 additions and 87 deletions

View file

@ -51,7 +51,7 @@ Meteor.methods({
let userInfo = await Meteor.users.findOneAsync({ _id: this.userId });
if (!userInfo) {
console.log("No matching user info found.")
// console.log("No matching user info found.")
} else {
try {
return await TaskItems.insertAsync({
@ -140,23 +140,23 @@ Meteor.methods({
let upToDate = "";
switch(timeFrame) {
case "1-week":
console.log("1 Week");
// console.log("1 Week");
upToDate = 7 * 24 * 60 * 60 * 1000;
break;
case "2-weeks":
console.log("2 Week");
// console.log("2 Week");
upToDate = 14 * 24 * 60 * 60 * 1000;
break;
case '1-month':
console.log("1 month");
// console.log("1 month");
upToDate = 30 * 24 * 60 * 60 * 1000;
break;
case '3-months':
console.log("3 months");
// console.log("3 months");
upToDate = 90 * 24 * 60 * 60 * 1000;
break;
case 'all':
console.log("all");
// console.log("all");
upToDate = 1 * 24 * 60 * 60 * 1000;
break;
default: