remove console log

This commit is contained in:
kwaroran
2023-11-09 20:51:37 +09:00
parent dfa0f1f121
commit dff566485c

View File

@@ -105,7 +105,6 @@ prop.push(
prop.forEach( function( prop ) { prop.forEach( function( prop ) {
if( (!whitelist.includes(prop)) && (!prop.startsWith('HTML')) ) { if( (!whitelist.includes(prop)) && (!prop.startsWith('HTML')) ) {
try { try {
console.log(prop)
Object.defineProperty( globaly, prop, { Object.defineProperty( globaly, prop, {
get : function() { get : function() {
throw "Security Exception: cannot access "+prop; throw "Security Exception: cannot access "+prop;
@@ -117,7 +116,6 @@ prop.forEach( function( prop ) {
} }
} }
else{ else{
console.log(`allow ${prop}`)
} }
}); });