DRHorton.utils = DRHorton.utils || {};
DRHorton.utils.logging = DRHorton.utils.logging || {};

DRHorton.utils.logging.log = function(str){
    if(typeof console != "undefined")
        console.log(str);
};


