Skip to content

Instantly share code, notes, and snippets.

@unknownuser88
Created January 6, 2014 15:36
Show Gist options
  • Save unknownuser88/8284525 to your computer and use it in GitHub Desktop.
Save unknownuser88/8284525 to your computer and use it in GitHub Desktop.
function debug
function debug(text) {
    if (window.console && window.console.log) {
        window.console.log(text);
    }
    if (window.opera) {
        window.opera.postError(text);
    }
    if (window.debugService) {
        window.debugService.trace(text);
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment