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

@ -25,12 +25,12 @@ Meteor.methods({
let linkExists = MenuProdLinks.findOne({ menuItemId: menuItemId });
if (linkExists) {
console.log("sending to update method instead.");
// console.log("sending to update method instead.");
Meteor.call('update.menuPordLInks', menuItemId, menuItemName, prodNameArray, function(err, result) {
if (err) {
console.log(" ERROR moving to the update method: " + err);
// console.log(" ERROR moving to the update method: " + err);
} else {
console.log("Successfully updated the menu prod links.")
// console.log("Successfully updated the menu prod links.")
}
});
} else {