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

@ -22,10 +22,10 @@ Template.headerBar.onRendered(function() {
let isRole = await Roles.getRolesForUserAsync(userId);
try {
if (!isRole) {
console.log("SystemAdmin role for user not found: " + isRole);;
// console.log("SystemAdmin role for user not found: " + isRole);;
} else {
console.log("Found role for the user: ");
console.dir(isRole);
// console.log("Found role for the user: ");
// console.dir(isRole);
}
} catch(error) {
console.log(" ERROR getting role for user: " + error);