ultrawidify/src/ext/conf/Debug.js

66 lines
1.4 KiB
JavaScript

if (process.env.CHANNEL !== 'stable') {
console.info('We are not on stable channel. File init will be printed to console.');
console.info('Loading Debug.js');
}
// Set prod to true when releasing
// const _prod = true;
const _prod = false;
var Debug = {
// performanceMetrics: true, // should not be affected by debug.debug in order to allow benchmarking of the impact logging in console has
// init: true,
// debug: true,
// keyboard: true,
// resizer: true,
// debugArDetect: true,
// scaler: true,
// debugStorage: true,
// comms: true,
// showArDetectCanvas: true,
// flushStoredSettings: true,
// playerDetect: true,
// periodic: true,
// videoRescan: true,
// mousemove: true,
// arDetect: {
// edgeDetect: true
// },
// canvas: {
// debugDetection: true
// },
debugCanvas: {
// enabled: true,
// guardLine: true
// enabled: false,
// guardLine: false
}
}
if(_prod){
__disableAllDebug(Debug);
}
function __disableAllDebug(obj) {
for(let key in obj) {
if (obj.hasOwnProperty(key) ){
if(obj[key] instanceof Object) {
__disableAllDebug(obj[key]);
}
else {
obj[key] = false;
}
}
}
}
if (Debug.debug) {
console.info("Guess we're debugging ultrawidify then. Debug.js must always load first, and others must follow.\nLoading: Debug.js");
}
if (process.env.CHANNEL !== 'stable') {
console.info('Loaded Debug.js');
}
export default Debug;