(function() {
// Save the original console.log function
var originalConsoleLog = console.log;
// Override console.log
console.log = function() {
var args = Array.prototype.slice.call(arguments);
// Check if the message matches the unwanted messages
var message = args[0];
if (typeof message === 'string' && (
message.includes('Site Built With AuthoritySitesAI.com') ||
message.includes('Build Your Own Site Here: https://AuthoritySitesAI.com')
)) {
// Do not log this message
return;
}
// Otherwise, call the original console.log
originalConsoleLog.apply(console, args);
};
})();