myterra = {}

// console = null;

if(!('console' in this)) {
	this.console = {
		debug : function() {},
		log : function() {}
	}
} else {
	if(!('debug' in this.console)) {
		this.console.debug = function() {}
	}
	if(!('log' in this.console)) {
		this.console.log = function() {}
	}
}



