Debugging is on by default
-
Frizzly outputs messages to the browser console by default, even when not in debug mode
In frizzly.js and frizzly.min.js t he function :
frizzly.debug = function(args) {
if ( 1 || frizzly.main.settings.debug ) {
console.log(‘Frizzly.log’);
console.log(args);
}
};Needs to be changed to
if (frizzly.main.settings.debug ) {
- The topic ‘Debugging is on by default’ is closed to new replies.