function log(msg) { try { console.log(msg); } catch(e) {} }
function logDebug(msg) { try { console.debug(msg); } catch(e) {} }
function logInfo(msg) { try { console.info(msg); } catch(e) {} }
function logWarning(msg) { try { console.warn(msg); } catch(e) {} }
function logError(msg) { try { console.error(msg); } catch(e) {} }
