Browse Source

added debug mode

pull/75/head
Zach Wise 13 years ago
parent
commit
ab3a1eaf8f
  1. 18
      source/js/VMM.js

18
source/js/VMM.js

@ -90,6 +90,10 @@ if (typeof VMM == 'undefined') {
//var VMM = {}; //var VMM = {};
var VMM = Class.extend({}); var VMM = Class.extend({});
/* Debug
================================================== */
VMM.debug = true;
/* Master Config /* Master Config
================================================== */ ================================================== */
@ -229,12 +233,14 @@ if (typeof VMM == 'undefined') {
/* Trace (console.log) /* Trace (console.log)
================================================== */ ================================================== */
function trace( msg ) { function trace( msg ) {
if (window.console) { if (VMM.debug) {
console.log(msg); if (window.console) {
} else if ( typeof( jsTrace ) != 'undefined' ) { console.log(msg);
jsTrace.send( msg ); } else if ( typeof( jsTrace ) != 'undefined' ) {
} else { jsTrace.send( msg );
//alert(msg); } else {
//alert(msg);
}
} }
} }

Loading…
Cancel
Save