﻿(function($) {
    jQuery.log = function(ex, options) {
        
        if (ex) {
            if (typeof(console) != 'undefined') {
                console.log(ex);
            } else {
                try {
                    alert(ex.message);
                } catch (e) {
                    alert(ex);
                }
            }
        }
    };
})(jQuery);




