home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 117
/
FreelogNo117-OctobreNovembre2013.iso
/
Theme
/
8GadgetPack
/
8GadgetPackSetup.msi
/
Gadgets.7z
/
Gadgets
/
HUD-Time.gadget
/
js
/
console_log.js
< prev
next >
Wrap
Text File
|
2012-11-01
|
440b
|
17 lines
if(!window.console) {
//no console, create console.log and send it to system debug
window.console = { };
console.log = function(msg) {
System.Debug.outputString('['+window.location+'] '+msg);
}
console.log('console.log is now set up');
} else {
console.log('[console.log.js] window already has a console object');
}
window.onerror = function(msg, url, line) {
console.log('Error: '+msg+' @ '+line+' in '+url);
}