From: Łukasz Rekucki Date: Tue, 25 Aug 2009 14:19:39 +0000 (+0200) Subject: Dodanie obsługi wielu argumentół do $.log. X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/05944499fb4b71d18a470ba9cf33805f2d10e416 Dodanie obsługi wielu argumentół do $.log. --- diff --git a/project/static/js/jquery.logging.js b/project/static/js/jquery.logging.js index 02e10e40..9a7fbe02 100644 --- a/project/static/js/jquery.logging.js +++ b/project/static/js/jquery.logging.js @@ -5,23 +5,18 @@ const LOG_LEVEL = LEVEL_DEBUG; - var mozillaLog = function(msg) { - if (console) console.log(msg); + var mozillaLog = function() { + if (window.console) console.log.apply(this, arguments); }; - var operaLog = function(msg) { - opera.postError(msg); + var operaLog = function() { + opera.postError.(arguments.join(' ')); }; - var defaultLog = function(msg) { return false; }; + var defaultLog = function() { return false; }; - $.log = function(message, level) { - if (level == null) level = LEVEL_INFO; - if (message == null) message = 'TRACE'; - if (level < LOG_LEVEL) - return false; - - return $.log.browserLog(message); + $.log = function( ) { + return $.log.browserLog.apply(this, arguments); }; if ($.browser.mozilla || $.browser.safari)