rogue console.log removal
This commit is contained in:
parent
98703c30d2
commit
a2f28f738a
@ -28,12 +28,12 @@ var Debug = {
|
||||
// canvas: {
|
||||
// debugDetection: true
|
||||
// },
|
||||
// debugCanvas: {
|
||||
debugCanvas: {
|
||||
// enabled: true,
|
||||
// guardLine: true
|
||||
// enabled: false,
|
||||
// guardLine: false
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
if(_prod){
|
||||
@ -41,14 +41,16 @@ if(_prod){
|
||||
}
|
||||
|
||||
function __disableAllDebug(obj) {
|
||||
for(key in obj) {
|
||||
for(let key in obj) {
|
||||
if (obj.hasOwnProperty(key) ){
|
||||
if(obj[key] instanceof Object)
|
||||
if(obj[key] instanceof Object) {
|
||||
__disableAllDebug(obj[key]);
|
||||
else
|
||||
}
|
||||
else {
|
||||
obj[key] = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if(Debug.debug)
|
||||
|
@ -60,9 +60,11 @@ class ArDetector {
|
||||
throw "Settings prevent autoar from starting"
|
||||
}
|
||||
} catch (e) {
|
||||
if (Debug.debug) {
|
||||
console.log("%c[ArDetect::init] INITIALIZATION FAILED!\n", _ard_console_stop, e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
destroy(){
|
||||
if(Debug.debug || Debug.init) {
|
||||
|
@ -40,10 +40,7 @@ class EdgeDetect{
|
||||
// edges = fastCandidates; // todo: processing
|
||||
// } else {
|
||||
edgeCandidates = this.edgeDetect(image, fastCandidates);
|
||||
console.log("edge candidates:", edgeCandidates)
|
||||
bars = this.edgePostprocess(edgeCandidates, this.conf.canvas.height);
|
||||
console.log("bars:", bars)
|
||||
|
||||
// }
|
||||
} catch (e) {
|
||||
if (Debug.debug) {
|
||||
|
Loading…
Reference in New Issue
Block a user