remove console.debugs

This commit is contained in:
meld-cp 2023-02-08 20:33:15 +00:00
parent e03f2b90d6
commit 26d267aca5
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ export default class MeldBuildPlugin extends Plugin {
}
if ( els.getText().contains( '//@hide_when_reading' ) ){
console.debug('Hiding element',{el});
//console.debug('Hiding element',{el});
el.hide();
}
}

View file

@ -89,7 +89,7 @@ export class MarkerRunContextImplemention implements TMarkerRunContext {
+ '(.*?)' // marker name end
+ this.escapeRegex(this.markerEndSuffix)
;
console.debug({exp});
//console.debug({exp});
const rgexp = new RegExp(exp, 'g');
const matches = text.matchAll( rgexp );